- 论坛徽章:
- 0
|
关于线程阻塞问题,一个用户态线程如果被阻塞,那么整个进程都会阻塞,我在APUE中也看到是这样讲解的 谁能举个例子??
这个是我的测试代码
#define MAX_THREAD (3)
unsigned long long main_counter;
unsigned long long counter[MAX_THREAD] = {0};
void *thread_worker(void *i)
{
int thread_num = *((int *)i);
printf("my thread_num = %d\n", thread_num);
while(1){
counter[thread_num]++;
main_counter++;
sleep(1);
}
}
int main(int argc, char ** argv)
{
int i;
int rtn;
char ch;
pthread_t pthread_id[MAX_THREAD] = {0};
for( i = 0; i < MAX_THREAD; i++){
if ( -1 == pthread_create(pthread_id + i, 0, thread_worker, (void *)(&i))){
printf("pthread_create error\n");
}
}
do{
unsigned long long sum = 0;
for( i = 0; i < MAX_THREAD; i++){
sum += counter[i];
printf("%llu\n", counter[i]);
}
printf("%llu, %llu\n", main_counter, sum);
}while((ch = getchar())!= 'q');
return 0;
}
在main函数中的while 会产生阻塞, 但是线程thread_worker还在运行 因为每次随意按下一个不是q的键时打印的值不同 这怎么解释??
有不妥的地方请大家指教 谢谢!!! |
|