当前位置: C语言 -- 标准库 -- <threads.h> -- thrd_current

thrd_current函数


概要:
#include <threads.h>
thrd_t thrd_current(void);

描述:

该函数标识调用它的线程。


参数:
void

无。


返回值:

函数返回调用线程的标识符。


范例:
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
23 
24 
25 
26 
27 
28 
29 
30 
31 
32 
33 
34 
35 
/*函数thrd_current范例*/

#ifdef __STDC_NO_THREADS__
#error "Implementation does not support multi-threads."
#endif

#include <stdio.h>
#include <stdlib.h>
#include <threads.h>

/*新线程中执行的函数。*/
int func(void *arg)
{
    /*分离当前线程。*/
    thrd_detach(thrd_current());
    
    /*其它代码。*/
    
    thrd_exit(0);
}

int main(void)
{
    thrd_t threadId;
    
    /*创建线程。*/
    if(thrd_create(&threadId, func, NULL) != thrd_success)
    {
        perror("thrd_create error");
        exit(EXIT_FAILURE);
    }
    
    return 0;
}


结果:

创建一个新线程,然后分离这个新线程;该新线程终止后,将由操作系统处理其分配的资源。


相关内容:
thrd_sleep 暂停当前线程的函数。
thrd_detach 分离线程的函数。
thrd_equal 测试两个线程是否为同一线程的函数。
thrd_exit 终止当前线程的函数。
thrd_join 连接线程的函数。
thrd_create 创建线程的函数。
thrd_yield 让其它线程运行的函数。