欢迎订阅 YY滴C++专栏!更多干货持续更新!以下是传送门!
题干:
代码:
#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;
}