命名空间
变体
操作

标准库头文件 <threads.h> (C11)

来自 cppreference.cn
< c‎ | header

此头文件是并发支持库的一部分,并提供对线程、互斥量、条件变量和线程特定存储的支持。

目录

[编辑] 线程

thrd_t 实现定义的完整对象类型,用于标识线程 [编辑]
创建线程
(函数) [编辑]
检查两个标识符是否引用同一个线程
(函数) [编辑]
获取当前线程标识符
(函数) [编辑]
暂停调用线程的执行,持续给定的时间段
(函数) [编辑]
让出当前时间片
(函数) [编辑]
终止调用线程
(函数) [编辑]
分离线程
(函数) [编辑]
阻塞直到线程终止
(函数) [编辑]
指示线程错误状态
(常量) [编辑]
thrd_start_t
(C11)
函数指针类型 int(*)(void*) 的 typedef,由 thrd_create 使用
(typedef) [编辑]

[编辑] 互斥

mtx_t 互斥量标识符 [编辑]
创建互斥量
(函数) [编辑]
阻塞直到锁定互斥量
(函数) [编辑]
阻塞直到锁定互斥量或超时
(函数) [编辑]
锁定互斥量,如果已被锁定则立即返回,不阻塞
(函数) [编辑]
解锁互斥量
(函数) [编辑]
销毁互斥量
(函数) [编辑]
定义互斥量的类型
(枚举) [编辑]
调用一次
精确地调用函数一次
(函数) [编辑]

[编辑] 条件变量

cnd_t 条件变量标识符
创建条件变量
(函数) [编辑]
解除阻塞一个在条件变量上阻塞的线程
(函数) [编辑]
解除阻塞所有在条件变量上阻塞的线程
(函数) [编辑]
在条件变量上阻塞
(函数) [编辑]
在条件变量上阻塞,带有超时
(函数) [编辑]
销毁条件变量
(函数) [编辑]

[编辑] 线程局部存储

(C11)(在 C23 中移除)
存储类说明符 _Thread_local 的便捷宏
(关键字宏) [编辑]
tss_t 线程特定存储指针 [编辑]
析构函数被调用的最大次数
(宏常量) [编辑]
tss_dtor_t
(C11)
函数指针类型 void(*)(void*),用于 TSS 析构函数
(typedef) [编辑]
创建带有给定析构函数的线程特定存储指针
(函数) [编辑]
从线程特定存储读取
(函数) [编辑]
写入线程特定存储
(函数) [编辑]
释放给定线程特定指针持有的资源
(函数) [编辑]

[编辑] 概要

#define __STDC_NO_THREADS__ 202311L
 
#define ONCE_FLAG_INIT      /* see description */
#define TSS_DTOR_ITERATIONS /* see description */
 
typedef /* see description */ cnd_t;
typedef /* see description */ thrd_t;
typedef /* see description */ tss_t;
typedef /* see description */ mtx_t;
typedef /* see description */ tss_dtor_t;
typedef /* see description */ thrd_start_t;
 
#define mtx_plain     /* see description */
#define mtx_recursive /* see description */
#define mtx_timed     /* see description */
#define once_flag     /* see description */
#define thrd_busy     /* see description */
#define thrd_error    /* see description */
#define thrd_nomem    /* see description */
#define thrd_success  /* see description */
#define thrd_timedout /* see description */
 
void call_once(once_flag* flag, void (*func)(void));
int cnd_broadcast(cnd_t* cond);
void cnd_destroy(cnd_t* cond);
int cnd_init(cnd_t* cond);
int cnd_signal(cnd_t* cond);
int cnd_timedwait(cnd_t* restrict cond, mtx_t* restrict mtx,
const struct timespec* restrict ts);
int cnd_wait(cnd_t* cond, mtx_t* mtx);
void mtx_destroy(mtx_t* mtx);
int mtx_init(mtx_t* mtx, int type);
int mtx_lock(mtx_t* mtx);
int mtx_timedlock(mtx_t* restrict mtx, const struct timespec* restrict ts);
int mtx_trylock(mtx_t* mtx);
int mtx_unlock(mtx_t* mtx);
int thrd_create(thrd_t* thr, thrd_start_t func, void* arg);
thrd_t thrd_current(void);
int thrd_detach(thrd_t thr);
int thrd_equal(thrd_t thr0, thrd_t thr1);
[[noreturn]] void thrd_exit(int res);
int thrd_join(thrd_t thr, int* res);
int thrd_sleep(const struct timespec* duration, struct timespec* remaining);
void thrd_yield(void);
int tss_create(tss_t* key, tss_dtor_t dtor);
void tss_delete(tss_t key);
void* tss_get(tss_t key);
int tss_set(tss_t key, void* val);