このテスト コードを作成して、スレッド 2 の pthread_t をスレッド 1 に渡そうとしましmain thread
た。thread1
thread1
thread2
void *function_thread1(void *ptr){
pthread_t thread2;
thread2 = (pthread_t *)ptr;
printf("the end of the thread1\n");
pthread_join(thread2,NULL);
pthread_exit(0);
}
void *function_thread2(void *ptr){
printf("the end of the thread2\n");
pthread_exit(0);
}
int main(void){
pthread_t thread1,thread2;
pthread_t *ptr2;
ptr2 = &thread2;
pthread_create(&thread1,NULL,function_thread2,(void*) ptr2);
pthread_create(&thread2,NULL,function_thread1,NULL);
printf("This is the end of main thread\n");
pthread_join(thread1,NULL);
exit(0);
}
それは動作しますが、私が知らないという次の警告が表示されました:
thread_join.c:12:10: warning: incompatible pointer to integer conversion
assigning to 'pthread_t' (aka 'unsigned long') from 'pthread_t *'
(aka 'unsigned long *'); dereference with *
thread2 = (pthread_t *)ptr;
^ ~~~~~~~~~~~~~~~~
*
1 warning generated.
何か案は?