aboutsummaryrefslogtreecommitdiff
path: root/works/life/operating-system-challenge/1/main.cpp
blob: 0f780efb186d0c92432d8092d24e2505e1478b4b (plain)
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
28
29
30
31
32
33
// Remember not to use O2 optimization!

#include <thread>
#include <vector>

int main() {
  std::vector<std::thread> threads;

  // Because my CPU has 4-core and 8-threads. I open 8 threads.
  for (int i = 0; i < 8; i++) {
    std::thread t([] {
      int i;
      int j;
      int k;
      double d;
      while (true) {
        i = i + i;
        j = j - j;
        k = k * k;
        d = d + d;
        i = i & i;
        j = j | j;
      }
    });
    threads.push_back(std::move(t));
  }

  for (auto &t : threads) {
    t.join();
  }

  return 0;
}