cplusplus
.com
教程
参考
文章
论坛
C++
教程
参考
文章
论坛
参考
C 库
<cassert> (assert.h)
<cctype> (ctype.h)
<cerrno> (errno.h)
C++11
<cfenv> (fenv.h)
<cfloat> (float.h)
C++11
<cinttypes> (inttypes.h)
<ciso646> (iso646.h)
<climits> (limits.h)
<clocale> (locale.h)
<cmath> (math.h)
<csetjmp> (setjmp.h)
<csignal> (signal.h)
<cstdarg> (stdarg.h)
C++11
<cstdbool> (stdbool.h)
<cstddef> (stddef.h)
C++11
<cstdint> (stdint.h)
<cstdio> (stdio.h)
<cstdlib> (stdlib.h)
<cstring> (string.h)
C++11
<ctgmath> (tgmath.h)
<ctime> (time.h)
C++11
<cuchar> (uchar.h)
<cwchar> (wchar.h)
<cwctype> (wctype.h)
容器
C++11
<array>
<deque>
C++11
<forward_list>
<list>
<map>
<queue>
<set>
<stack>
C++11
<unordered_map>
C++11
<unordered_set>
<vector>
输入/输出
<fstream>
<iomanip>
<ios>
<iosfwd>
<iostream>
<istream>
<ostream>
<sstream>
<streambuf>
多线程
C++11
<atomic>
C++11
<condition_variable>
C++11
<future>
C++11
<mutex>
C++11
<thread>
其他
<algorithm>
<bitset>
C++11
<chrono>
C++11
<codecvt>
<complex>
<exception>
<functional>
C++11
<initializer_list>
<iterator>
<limits>
<locale>
<memory>
<new>
<numeric>
C++11
<random>
C++11
<ratio>
C++11
<regex>
<stdexcept>
<string>
C++11
<system_error>
C++11
<tuple>
C++11
<type_traits>
C++11
<typeindex>
<typeinfo>
<utility>
<valarray>
<mutex>
类
C++11
adopt_lock_t
C++11
defer_lock_t
C++11
lock_guard
C++11
mutex
C++11
once_flag
C++11
recursive_mutex
C++11
recursive_timed_mutex
C++11
timed_mutex
C++11
try_to_lock_t
C++11
unique_lock
函数
C++11
call_once
C++11
lock
C++11
try_lock
常量
C++11
adopt_lock
C++11
defer_lock
C++11
try_to_lock
参考
<mutex>
头文件
<mutex>
互斥体
包含允许代码临界区并发执行时进行
互斥
(mutex)的设施的头文件,从而明确避免数据竞争。
它包含
互斥体类型
、
锁类型
和特定的
函数
互斥体类型
是用于保护对代码
临界区
访问的
可锁定类型
:
锁定
一个互斥体可防止其他线程锁定它(独占访问),直到它被
解锁
:
mutex
、
recursive_mutex
、
timed_mutex
、
recursive_timed_mutex
。
锁
是通过将其访问与自身生命周期关联起来以管理互斥体的对象:
lock_guard
、
unique_lock
。
函数
用于同时锁定多个互斥体(
try_lock
、
lock
)以及直接阻止特定函数的并发执行(
call_once
)。
类
互斥体
mutex
互斥体类
(类)
recursive_mutex
递归互斥体类
(类)
timed_mutex
定时互斥体类
(类)
recursive_timed_mutex
递归定时互斥体
(类)
锁
lock_guard
锁守卫
(类模板)
unique_lock
唯一锁
(类模板)
其他类型
once_flag
call_once 的标志参数类型
(类)
adopt_lock_t
adopt_lock 的类型
(类)
defer_lock_t
defer_lock 的类型
(类)
try_to_lock_t
try_to_lock 的类型
(类)
函数
try_lock
尝试锁定多个互斥体
(函数模板)
lock
锁定多个互斥体
(函数模板)
call_once
调用函数一次
(公开成员函数)