From 8d8d2c1c0577d16b00cf27e29212cf0a1737ae7f Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Fri, 25 Dec 2020 04:45:24 +0300 Subject: initial commit --- foo.cpp | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 foo.cpp (limited to 'foo.cpp') diff --git a/foo.cpp b/foo.cpp new file mode 100644 index 0000000..a7891bb --- /dev/null +++ b/foo.cpp @@ -0,0 +1,39 @@ +#include +#include +#include +#include +#include +#include +#include + +namespace { + +struct Counter { + std::mutex mtx; + std::size_t impl = 0; +}; + +void do_something(Counter& counter) { + std::lock_guard lck{counter.mtx}; + ++counter.impl; + std::cout << "Doing something #" << counter.impl << '\n'; +} + +} + +int main() { + try { + Counter counter; + std::array workers; + for (auto& worker : workers) { + worker = std::thread{&do_something, std::ref(counter)}; + } + for (auto& worker : workers) { + worker.join(); + } + } catch (const std::exception& e) { + std::cerr << e.what() << '\n'; + return 1; + } + return 0; +} -- cgit v1.2.3