0

このテスト コードを作成して、スレッド 2 の pthread_t をスレッド 1 に渡そうとしましmain threadた。thread1thread1thread2

   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.

何か案は?

4

1 に答える 1

1

あなたがしているべきです:

pthread_t *thread2;
thread2 = ptr;

pthread_join(*thread2, NULL);
于 2012-08-08T04:57:32.187 に答える