您的当前位置:首页正文

【Linux】一个简单while循环实现【严格轮转】,从而理解什么是【多线程的忙等待】

2024-11-07 来源:个人技术集锦

欢迎订阅 YY滴C++专栏!更多干货持续更新!以下是传送门!

一.忙等待介绍

  • 忙等待(Busy-waiting)是一种同步机制,其中一个进程或线程 重复检查某个条件是否满足 以便继续执行,而不是进入休眠或阻塞状态。
  • 于是我们便可以用while循环,让 不符合条件/顺序的线程 符合while循环条件 进入里面进入忙等待状态,达到 重复检查 效果;而不是不符合条件运行或者直接啥也不干结束;

二.忙等待代码题解析

题干:

代码:

#include <stdio.h>  
#include <stdlib.h>  
#include <pthread.h>  
#include <unistd.h>  
  
int turn = 0;  // 全局标志变量,用于控制线程1和线程0的执行顺序 
  
void* thread_func(void* arg) {  
    long tnum=(long)param;

    while(tnum!=turn);//线程号不为1就关在这里,重复检查,即忙等待
    for (int i = 1; i <= 10; ++i) 
    {  
        printf("Thread 0: %d\n", i);  
        sleep(1);  
     }  
     turn=1;//实现严格轮转,把turn改成下一个将要进行的进程号

}  
  
int main() {  
    pthread_t thread0, thread1;  
    long tnum1=0;
    long tnum2=1;
    // 创建线程1和线程0  
    pthread_create(&thread1, NULL, thread_func, tnum1);  
    pthread_create(&thread0, NULL, thread_func, tnum2);  
  
    // 等待线程1和线程0完成  
    pthread_join(thread1, NULL);  
    pthread_join(thread0, NULL);  
  
    return 0;  
}
显示全文