2
スレッドルーチンから明示的にpthread_exit
を呼び出していますか?`func`が終了するとスレッドは自動的に終了しますか?
例コード:
pthread_create(&pth, NULL, (void *)func, parg);
... func() {
...
//do I have to call pthread_exit() here?
return 0;
}