当前位置: 技术问答>linux和unix
能否通过线程id控制线程的状态?或是观察到线程的状态?
来源: 互联网 发布时间:2015-12-30
本文导语: 是挂起还是运行等 | strace -p 21482 | 可以看到线程在做什么,可以看到系统调用 | pthread_testcancel() ? | pthread_join | 同问 pthread_join(pthread_t th)...
是挂起还是运行等
|
strace -p 21482
|
可以看到线程在做什么,可以看到系统调用
|
pthread_testcancel() ?
|
pthread_join
|
同问
pthread_join(pthread_t th)是挂起现在的线程,直到th结束才执行吧
pthread_join(pthread_t th)是挂起现在的线程,直到th结束才执行吧