创建线程
下面的程序,我们可以用它来创建一个 POSIX 线程:
1 |
|
使用 -lpthread 库编译下面的程序:
1 | $ g++ test.cpp -lpthread -o test.o |
条件变量
pthread_cond_wait
unlocks the mutex just before it sleeps,but then it reaquires the mutex (which may require waiting) when it is signalled, before it wakes up.
示例 1
创建两个线程,其中一个输出1-52,另外一个输出A-Z。
输出格式要求:12A 34B 56C 78D …
1 |
|
示例 2 死锁
1 |
|
输出:
in parent thread, got mutex a, waiting for mutex b
in child thread, got mutex b, waiting for mutex a
关键字:
noexcept explicit
- std::ref C++11 的 std::ref 用法 | 拾荒志 (murphypei.github.io)
- std::bind
- std::forward
- auto&