repo.or.cz
/
cinelerra_cv.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
r701: Jean-Luc Coulon has gettextized [tm] 2 more strings in the time average effect.
[cinelerra_cv.git]
/
guicast
/
mutex.h
blob
4044146d12c006d9164f955fd725a36340635981
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
(
char
*
title
=
0
);
11
~
Mutex
();
12
13
int
lock
(
char
*
location
=
0
);
14
int
unlock
();
15
int
trylock
();
16
int
reset
();
17
18
pthread_mutex_t mutex
;
19
char
*
title
;
20
};
21
22
23
#endif