#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include
using namespace std;
int a = 1;
void* thread1(void *args)//this is
{
int flag = (int)args;
while(*flag)
{
}
pthread_exit(NULL);
}
void* thread2(void *args)
{
int flag = (int)args;
while(*flag)
{
}
pthread_exit(NULL);
}
void* thread3(void *args)
{ int flag =(int)args;
if(getchar() == ‘\n’)
{
*flag = 0;
}
pthread_exit(NULL);
}
int main()
{
pthread_t tid1,tid2,tid3;
int err;
void *result;
int *open=&a;
err = pthread_create(&tid1,NULL,thread1,open);
err = pthread_create(&tid2,NULL,thread2,open);
err = pthread_create(&tid3,NULL,thread3,open);
while(*open);
err = pthread_join(tid1,NULL);
err = pthread_join(tid2,NULL);
err = pthread_join(tid3,NULL);
return 0;
}
587

被折叠的 条评论
为什么被折叠?



