diff options
author | dscho <dscho> | 2001-09-29 19:51:17 +0000 |
---|---|---|
committer | dscho <dscho> | 2001-09-29 19:51:17 +0000 |
commit | 08ed0461c7abca36fd6a6b0abf7ae466a2e8435a (patch) | |
tree | 36a9db4d83034048feaae920a071a670e6f5bcda /rfb.h | |
parent | 641012310eebe3a129c8a1939c3f8c9cd645ef50 (diff) | |
download | libtdevnc-08ed0461c7abca36fd6a6b0abf7ae466a2e8435a.tar.gz libtdevnc-08ed0461c7abca36fd6a6b0abf7ae466a2e8435a.zip |
finally fixed pthreads
Diffstat (limited to 'rfb.h')
-rw-r--r-- | rfb.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -282,9 +282,6 @@ typedef struct rfbClientRec { int sock; char *host; -#ifdef HAVE_PTHREADS - pthread_mutex_t outputMutex; -#endif /* Possible client states: */ enum { RFB_PROTOCOL_VERSION, /* establishing protocol version */ @@ -333,6 +330,8 @@ typedef struct rfbClientRec { #ifdef HAVE_PTHREADS + pthread_mutex_t dontKillMutex; /* if you need a reliable clientPtr */ + pthread_mutex_t outputMutex; pthread_mutex_t updateMutex; pthread_cond_t updateCond; #endif |