Advertisement
Lauda

Untitled

Apr 10th, 2013
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.95 KB | None | 0 0
  1. #include <iostream>
  2. #include <thread>
  3.  
  4. using namespace std;
  5.  
  6. class nit {
  7.     enum State { ZAUZETA, ZAVRSILA };
  8.     State s;
  9.     mutex m;
  10.     condition_variable c;
  11.  
  12.     public:
  13.     nit() : s(ZAUZETA) {};
  14.  
  15.         void cekaj() {
  16.                 unique_lock<mutex> l(m);
  17.                 while (s != ZAVRSILA) {
  18.                     c.wait(l);
  19.                 }
  20.             }
  21.  
  22.         void zavrsio() {
  23.             lock_guard<mutex> l(m);
  24.             s = ZAVRSILA;
  25.             c.notify_one();
  26.         }
  27. };
  28.  
  29. mutex term_mx;
  30. void printA(nit& p) {
  31.    { lock_guard<mutex> l(term_mx);
  32.       cout << "Ja sam nit a!" << endl;
  33.    }
  34.    p.zavrsio();
  35. }
  36.  
  37. void printB(nit &p) {
  38.    p.cekaj();
  39.    { lock_guard<mutex> l(term_mx);
  40.       cout << "Ja sam nit b!" << endl;
  41.    }
  42. }
  43.  
  44. int main() {
  45.     nit p;
  46.     thread a,b;
  47.  
  48.         a = thread(printA, ref(p));
  49.         b = thread(printB, ref(p));
  50.  
  51.         a.join();
  52.         b.join();
  53.  
  54.     return 0;
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement