Advertisement
Guest User

Untitled

a guest
May 26th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. Lock()
  2. {
  3. counter++;
  4. if(counter == 1)
  5. {
  6. m.lock();
  7. }
  8. }
  9. Unlock()
  10. {
  11. counter--;
  12. if(counter == 0)
  13. {
  14. m.unlock();
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement