std::shared_mutex::lock
来自 cppreference.com
< cpp | thread | shared mutex
void lock(); |
(自 C++17 起) | |
获取 shared_mutex
的独占所有权。如果另一个线程对同一个 shared_mutex
持有独占锁或共享锁,则对 lock
的调用将阻塞执行,直到所有此类锁都被释放。当 shared_mutex
以独占模式锁定时,任何其他类型的锁都不能被锁定。
如果 lock
由一个已经以任何模式(独占或共享)拥有 shared_mutex
的线程调用,则行为未定义。对同一个互斥锁的先前 unlock() 操作与(如 std::memory_order 中定义的)此操作同步。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
(无)
[编辑] 异常
当发生错误时抛出 std::system_error,包括来自底层操作系统的错误,这些错误会阻止 lock
满足其规范。在抛出任何异常的情况下,互斥锁不会被锁定。
[编辑] 注释
通常不会直接调用 lock()
:std::unique_lock、std::scoped_lock 和 std::lock_guard 用于管理独占锁定。
[编辑] 示例
运行此代码
#include <chrono> #include <iostream> #include <mutex> #include <shared_mutex> #include <syncstream> #include <thread> #include <vector> std::mutex stream_mutx; void print(auto const& v) { std::unique_lock<std::mutex> lock(stream_mutx); std::cout << std::this_thread::get_id() << " saw: "; for (auto e : v) std::cout << e << ' '; std::cout << '\n'; } int main() { using namespace std::chrono_literals; constexpr int N_READERS = 5; constexpr int LAST = -999; std::shared_mutex smtx; int product = 0; auto writer = [&smtx, &product](int start, int end) { for (int i = start; i < end; ++i) { auto data = i; { std::unique_lock<std::shared_mutex> lock(smtx); // better than: // smtx.lock(); product = data; } std::this_thread::sleep_for(3ms); } smtx.lock(); // lock manually product = LAST; smtx.unlock(); }; auto reader = [&smtx, &product] { int data = 0; std::vector<int> seen; do { { // better to use: std::shared_lock lock(smtx); // smtx.lock_shared(); data = product; } // smtx.unlock_shared(); seen.push_back(data); std::this_thread::sleep_for(2ms); } while (data != LAST); print(seen); }; std::vector<std::thread> threads; threads.emplace_back(writer, 1, 13); threads.emplace_back(writer, 42, 52); for (int i = 0; i < N_READERS; ++i) threads.emplace_back(reader); for (auto&& t : threads) t.join(); }
可能的输出
127755840 saw: 43 3 3 4 46 5 6 7 7 8 9 51 10 11 11 12 -999 144541248 saw: 2 44 3 4 46 5 6 7 7 8 9 51 10 11 11 12 -999 110970432 saw: 42 2 3 45 4 5 47 6 7 8 8 9 10 11 11 12 -999 119363136 saw: 42 2 3 4 46 5 6 7 7 8 9 9 10 11 11 12 12 -999 136148544 saw: 2 44 3 4 46 5 6 48 7 8 9 51 10 11 11 12 12 -999
[编辑] 另请参阅
尝试锁定互斥锁,如果互斥锁不可用则返回 (公共成员函数) | |
解锁互斥锁 (公共成员函数) | |
锁定互斥锁以进行共享所有权,如果互斥锁不可用则阻塞 (公共成员函数) |