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

thrd_yield函数


概要:
#include <threads.h>
void thrd_yield(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 
36 
37 
38 
39 
40 
41 
42 
43 
44 
45 
46 
47 
48 
/*函数thrd_yield范例*/

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

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

#define NUMBER 2
#define ITERATION 5

/*新线程中执行的函数。*/
int func(void *arg)
{
    for(int i=0; i<ITERATION; ++i)
    {
        printf("%2d", *((int *)arg));
        thrd_yield();
    }

    return 0;
}

int main(void)
{
    thrd_t threadId[NUMBER];
    int data[NUMBER];
    
    /*创建线程。*/
    for(int i=0; i<NUMBER; ++i)
    {
        data[i] = i + 1;
        if(thrd_create((threadId+i), func, (data+i)) != thrd_success)
        {
            printf("Fail to create thread %d.\n", data[i]);
            exit(EXIT_FAILURE);
        }
    }

    /*连接线程。*/
    for(int i=0; i<NUMBER; ++i)
        thrd_join(threadId[i], NULL);

    return 0;
}


输出:

2 1 2 1 2 1 2 1 2 1

注:使用ideone编译。

如果不调用thrd_yield函数,将输出:

2 2 2 2 2 1 1 1 1 1


相关内容:
thrd_current 标识调用线程的函数。
thrd_detach 分离线程的函数。
thrd_equal 测试两个线程是否为同一线程的函数。
thrd_exit 终止当前线程的函数。
thrd_join 连接线程的函数。
thrd_create 创建线程的函数。
thrd_sleep 暂停当前线程的函数。