blob: 925c4e0e9b8f92c771ad2485b4c5d12d753d618b [file] [log] [blame]
#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*);