ash*_*faq 1 c multithreading mutex pthreads pthread-join
我想要做的是......
pthread_create(&producer_thread, &to_join, producer_routine, &queue);
pthread_detach(producer_thread);
...
...
pthread_join(producer_thread, NULL);
Run Code Online (Sandbox Code Playgroud)
这在某种程度上是可行的,在运行上面的代码时,它无法加入线程.