Advertisement
Lauda

a,b prije c

Apr 10th, 2013
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.10 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.     int br;
  11.     condition_variable c;
  12.  
  13.     public:
  14.     nit() : s(ZAUZETA), br(0) {};
  15.  
  16.         void cekaj() {
  17.                 unique_lock<mutex> l(m);
  18.                 while (br != 2) {
  19.                     c.wait(l);
  20.                 }
  21.             }
  22.  
  23.         void zavrsio() {
  24.             lock_guard<mutex> l(m);
  25.             br++;
  26.             if (br == 2)
  27.                 c.notify_one();
  28.  
  29.         }
  30. };
  31.  
  32. mutex term_mx;
  33. void printA(nit& p) {
  34.     cout << "Ja sam nit a!" << endl;
  35.    p.zavrsio();
  36. }
  37.  
  38. void printB(nit &p) {
  39.       cout << "Ja sam nit b!" << endl;
  40.    p.zavrsio();
  41. }
  42.  
  43. void printC(nit &p) {
  44.    p.cekaj();
  45.    { lock_guard<mutex> l(term_mx);
  46.       cout << "Ja sam nit c!" << endl;
  47.    }
  48.    p.zavrsio();
  49. }
  50.  
  51. int main() {
  52.     nit p;
  53.     thread a,b,c;
  54.  
  55.         a = thread(printA, ref(p));
  56.         b = thread(printB, ref(p));
  57.         c = thread(printC, ref(p));
  58.  
  59.         a.join();
  60.         b.join();
  61.         c.join();
  62.  
  63.     return 0;
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement