小编ash*_*faq的帖子

Pthreads - 我可以从一个主题分离然后加入主要吗?

我想要做的是......

pthread_create(&producer_thread, &to_join, producer_routine, &queue);
pthread_detach(producer_thread);
...
...
pthread_join(producer_thread, NULL);
Run Code Online (Sandbox Code Playgroud)

这在某种程度上是可行的,在运行上面的代码时,它无法加入线程.

c multithreading mutex pthreads pthread-join

1
推荐指数
1
解决办法
1097
查看次数

标签 统计

c ×1

multithreading ×1

mutex ×1

pthread-join ×1

pthreads ×1