pthread_self可以做为 pthread_detach()的参数吗
时间: 2023-12-23 14:26:55 浏览: 51
Windows可使用的pthread库
是的,pthread_self()函数返回当前线程的线程ID,可以作为pthread_detach()函数的参数,将当前线程的状态改为unjoinable状态,确保资源的释放。例如:
```c
pthread_detach(pthread_self());
```
这行代码将当前线程的状态改为unjoinable状态。
阅读全文