File: mutex.cpp

package info (click to toggle)
yrmcds 1.0.4-6
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 924 kB
  • ctags: 1,346
  • sloc: cpp: 9,634; sh: 133; makefile: 97
file content (27 lines) | stat: -rw-r--r-- 433 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <mutex>
#include <thread>
#include <iostream>

std::mutex lock;

int g_counter = 0;

void foo() {
    for (int i = 0; i < 10000; ++i) {
        std::lock_guard<std::mutex> g(lock);
        ++g_counter;
    }
    return;
}

int main() {
    std::thread t1(foo);
    std::thread t2(foo);
    std::thread t3(foo);
    foo();
    t1.join();
    t2.join();
    t3.join();
    std::cout << g_counter << std::endl;
    return 0;
}