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_sleep
定义于头文件 <threads.h>
|
||
int thrd_sleep( const struct timespec* duration, struct timespec* remaining ); |
(C11 起) | |
阻塞当前线程的执行,至少直至经过 duration
所指向的基于 TIME_UTC 的时长。
若收到不忽略的信号( signal ),则可以较早地从休眠恢复,。此情况下,若 remaining
非 NULL ,则存储剩余时长到 remaining
所指向的对象中。
参数
duration | - | 指向要休眠的时长的指针 |
remaining | - | 指向要放置中断剩余时间的对象的指针。可为 NULL ,此情况下忽略它 |
返回值
成功休眠时为 0,若出现信号则为 -1 ,若出现错误则为其他负值。
注意
duration
和 remaining
可以指向相同对象,这会简化函数在信号后的重新运行。
实际休眠时间可能长于请求,因为它会被向上舍入到计时器的粒度,而且还因为调度和环境切换开销。
此函数的 POSIX 等价版本是 nanosleep 。
示例
运行此代码
输出:
Time: Mon Feb 2 16:18:41 2015 Time: Mon Feb 2 16:18:42 2015
引用
- C11 standard (ISO/IEC 9899:2011):
- 7.26.5.7 The thrd_sleep function (p: 385)
参阅
(C11) |
让出当前时间片段 (函数) |