对 pthread_create() 中的参数感到困惑
Confused about the argument in pthread_create()
我的问题:为什么不将 &i 作为最后一个参数传递给 pthread_create()?相反,他创建了一个数组来保存相同的东西....
#define THREAD_CT 2 /* bump this up a few numbers if you like */
void *print_stuff(void *ptr) {
int i, id= * (int *) ptr;
for (i= 0; i < 5; i++) {
printf("Thread %d, loop %d.\n", id, i);
sleep(rand() % 2); /* sleep 0 or 1 seconds */
}
printf("Thread %d exiting.\n", id);
return NULL;
}
int main(void) {
pthread_t tids[THREAD_CT];
int i, ids[THREAD_CT];
for (i= 0; i < THREAD_CT; i++) {
ids[i]= i;
pthread_create(&tids[i], NULL, print_stuff, &ids[i]);
printf("Main thread created thread %d (ID %ld).\n", i, tids[i]);
}
for (i= 0; i < THREAD_CT; i++) {
pthread_join(tids[i], NULL);
printf("Main thread reaped thread %d (ID %ld).\n", i, tids[i]);
}
return 0;
}
why not just pass &i as the last argument to pthread_create()?
因为如果这样做,所有线程都将共享地址 i
,并且线程之间会发生数据竞争。
另一种方法是像这样转换值:
pthread_create(&tids[i], NULL, print_stuff, (void *)i);
但是这个整数到指针的转换具有实现定义的行为。所以你现在的方式可能是最好的方式
还要注意 rand()
不是线程安全的。
我的问题:为什么不将 &i 作为最后一个参数传递给 pthread_create()?相反,他创建了一个数组来保存相同的东西....
#define THREAD_CT 2 /* bump this up a few numbers if you like */
void *print_stuff(void *ptr) {
int i, id= * (int *) ptr;
for (i= 0; i < 5; i++) {
printf("Thread %d, loop %d.\n", id, i);
sleep(rand() % 2); /* sleep 0 or 1 seconds */
}
printf("Thread %d exiting.\n", id);
return NULL;
}
int main(void) {
pthread_t tids[THREAD_CT];
int i, ids[THREAD_CT];
for (i= 0; i < THREAD_CT; i++) {
ids[i]= i;
pthread_create(&tids[i], NULL, print_stuff, &ids[i]);
printf("Main thread created thread %d (ID %ld).\n", i, tids[i]);
}
for (i= 0; i < THREAD_CT; i++) {
pthread_join(tids[i], NULL);
printf("Main thread reaped thread %d (ID %ld).\n", i, tids[i]);
}
return 0;
}
why not just pass &i as the last argument to pthread_create()?
因为如果这样做,所有线程都将共享地址 i
,并且线程之间会发生数据竞争。
另一种方法是像这样转换值:
pthread_create(&tids[i], NULL, print_stuff, (void *)i);
但是这个整数到指针的转换具有实现定义的行为。所以你现在的方式可能是最好的方式
还要注意 rand()
不是线程安全的。