thrd_detach函数
概要:
#include <threads.h> int thrd_detach(thrd_t thr);
描述:
该函数将分离线程。该函数告诉操作系统在参数thr标识的线程结束时,处理分配给该线程的所有资源。调用该函数前,参数thr标识的线程应没有被分离或者和其它线程连接。
参数:
thrd_t thr
线程标识符。
返回值:
如果成功分离,函数返回thrd_success;如果不能成功分离,函数返回thrd_error。
范例:
|
|
输出:
The thread has been detached.
注:使用Pelles C编译。
相关内容:
thrd_current | 标识调用线程的函数。 |
thrd_sleep | 暂停当前线程的函数。 |
thrd_equal | 测试两个线程是否为同一线程的函数。 |
thrd_exit | 终止当前线程的函数。 |
thrd_join | 连接线程的函数。 |
thrd_create | 创建线程的函数。 |
thrd_yield | 让其它线程运行的函数。 |