- 论坛徽章:
- 0
|
pthread_join第二个参数获得的是thread本身的返回值,而不是pthread_create的返回值。
参照下面的例子。
- #include <pthread.h>
- #include <stdio.h>
- #define NUM_THREADS 1
- void *thread(void *threadid)
- {
- int ret = rand();
- printf("thread return %d!\n", ret);
- pthread_exit((void *)ret);
- }
- int main (int argc, char *argv[])
- {
- pthread_t threads[NUM_THREADS];
- int rc, t;
- srand(time(NULL));
- for(t=0; t<NUM_THREADS; t++){
- printf("In main: creating thread %d\n", t);
- rc = pthread_create(&threads[t], NULL, thread, (void *)t);
- if (rc){
- printf("ERROR; return code from pthread_create() is %d\n", rc);
- exit(-1);
- }
- }
- pthread_join(threads[0], &rc);
- printf("rc=%d\n", rc);
- pthread_exit(NULL);
- }
- ~
复制代码 |
|