home *** CD-ROM | disk | FTP | other *** search
/ Geek 6 / Geek-006.iso / linux / video / xmovie-1.5.3.tar.gz / xmovie-1.5.3.tar / xmovie-1.5.3 / guicast / mutex.h < prev    next >
C/C++ Source or Header  |  2000-11-29  |  213b  |  23 lines

  1. #ifndef MUTEX_H
  2. #define MUTEX_H
  3.  
  4. #include <pthread.h>
  5. #include <stdio.h>
  6.  
  7. class Mutex
  8. {
  9. public:
  10.     Mutex();
  11.     ~Mutex();
  12.  
  13.     int lock();
  14.     int unlock();
  15.     int trylock();
  16.     int reset();
  17.  
  18.     pthread_mutex_t mutex;
  19. };
  20.  
  21.  
  22. #endif
  23.