plan9port/src/cmd/devdraw/cocoa-thread.h

15 lines
189 B
C
Raw Normal View History

#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*);