Advertisement
Guest User

Untitled

a guest
Dec 16th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #ifndef _SYNCHRONIZER_
  2. #define _SYNCHRONIZER_
  3.  
  4. typedef struct Sync_t* Sync_ptr;
  5.  
  6. Sync_ptr sync_init(Sync_ptr s, int n);
  7. void synchronize(Sync_ptr s, int id);
  8. void notify(Sync_ptr s);
  9.  
  10. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement