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

thrd_start_t类型


描述:

该类型是函数指针类型int (*)(void *);该类型函数指针可用作thrd_create函数的第二个参数,用以创建一个新线程。


范例:
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 
/*类型thrd_start_t范例*/

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

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

/*新线程中执行的函数。*/
void func(void *arg)
{
    puts((char *)arg);
}

int main(void)
{
    thrd_t threadId;
    char arr[] = "This is a new thread.";
    
    /*创建线程。*/
    if(thrd_create(&threadId, (thrd_start_t)func, arr) != thrd_success)
    {
        perror("thrd_create error");
        exit(EXIT_FAILURE);
    }
    
    /*连接线程。*/
    thrd_join(threadId, NULL);
    
    return 0;
}


输出:

This is a new thread.

注:使用Pelles C编译。


相关内容:
thrd_t 保存线程标识符的完整对象类型。