r701: Jean-Luc Coulon has gettextized [tm] 2 more strings in the time average effect.
[cinelerra_cv.git] / guicast / mutex.h
blob4044146d12c006d9164f955fd725a36340635981
1 #ifndef MUTEX_H
2 #define MUTEX_H
4 #include <pthread.h>
5 #include <stdio.h>
7 class Mutex
9 public:
10 Mutex(char *title = 0);
11 ~Mutex();
13 int lock(char *location = 0);
14 int unlock();
15 int trylock();
16 int reset();
18 pthread_mutex_t mutex;
19 char *title;
23 #endif