add make CONF=pthread for modern systems
This commit is contained in:
@ -121,7 +121,12 @@ extern char* utfrrune(char*, long);
|
||||
|
||||
typedef struct Lock
|
||||
{
|
||||
#ifdef PTHREAD
|
||||
int init;
|
||||
pthread_mutex_t mutex;
|
||||
#else
|
||||
long key;
|
||||
#endif
|
||||
} Lock;
|
||||
|
||||
typedef struct QLock
|
||||
|
Reference in New Issue
Block a user