thread_yield
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <threads.h> 中定义
|
||
void thrd_yield(); |
(C11 起) | |
提供一个提示重新安排执行线程的执行,让其他线程运行.
原文:
Provides a hint to the implementation to reschedule the execution of threads, allowing other threads to run.
[编辑] 参数
(无)
[编辑] 返回值
(无)
[编辑] 另请参阅
(C11) |
暂停执行调用的线程在给定的时间内 原文: suspends execution of the calling thread for the given period of time (函数) |