C 参考手册
- C 语言
- C 关键词
- 预处理器
- C 标准库头文件
- 类型支持
- 程序支持工具
- 变参数函数
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 算法
- 数值
- 文件输入/输出
- 本地化支持
- 原子操作库
- 线程支持库
- thread_local
- thrd_create
- thrd_equal
- thrd_current
- thrd_sleep
- thrd_yield
- thrd_exit
- thrd_detach
- thrd_join
- thrd_success, thrd_timedout, thrd_busy, thrd_nomem, thrd_error
- mtx_init
- mtx_lock
- mtx_timedlock
- mtx_trylock
- call_once, once_flag, ONCE_FLAG_INIT
- mtx_unlock
- mtx_destroy
- mtx_plain, mtx_recursive, mtx_timed
- cnd_init
- cnd_signal
- cnd_broadcast
- cnd_wait
- cnd_timedwait
- cnd_destroy
- TSS_DTOR_ITERATIONS
- tss_create
- tss_get
- tss_set
- tss_delete
- 实验性 C 标准库
- 有用的资源
- 符号索引
- 注释
thrd_yield
定义于头文件 <threads.h>
|
||
void thrd_yield(void); |
(C11 起) | |
向实现提供一个重新安排线程执行的提示,允许其他线程运行。
参数
(无)
返回值
(无)
注意
此函数的准确行为取决于实现,特别是使用中的 OS 编排机制和系统状态。例如,先进先出的实时调度器( Linux 的SCHED_FIFO
)会悬停当前线程,并将它放在准备运行的同优先级线程队列尾部(而若无在同优先级的线程,则 yield
无效)。
此函数的 POSIX 等价版本是 sched_yield 。
示例
运行此代码
#include <stdio.h> #include <time.h> #include <threads.h> // 工具函数:微秒单位的 timespec 差 double usdiff(struct timespec s, struct timespec e) { double sdiff = difftime(e.tv_sec, s.tv_sec); long nsdiff = e.tv_nsec - s.tv_nsec; if(nsdiff < 0) return 1000000*(sdiff-1) + (1000000000L+nsdiff)/1000.0; else return 1000000*(sdiff) + nsdiff/1000.0; } // 在让出时等待 void sleep_100us() { struct timespec start, end; timespec_get(&start, TIME_UTC); do { thrd_yield(); timespec_get(&end, TIME_UTC); } while(usdiff(start, end) < 100.0); } int main() { struct timespec start, end; timespec_get(&start, TIME_UTC); sleep_100us(); timespec_get(&end, TIME_UTC); printf("Waited for %.3f us\n", usdiff(start, end)); }
可能的输出:
Waited for 100.344 us
引用
- C11 standard (ISO/IEC 9899:2011):
- 7.26.5.8 The thrd_yield function (p: 385)
参阅
(C11) |
在给定的时间段内暂停调用方线程的执行 (函数) |