blob: 925c4e0e9b8f92c771ad2485b4c5d12d753d618b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#define QLock DQLock
#define qlock dqlock
#define qunlock dqunlock
typedef struct QLock QLock;
struct QLock
{
pthread_mutex_t m;
int init;
};
void qlock(QLock*);
void qunlock(QLock*);
|