summaryrefslogtreecommitdiffstats
path: root/rfb.h
diff options
context:
space:
mode:
authordscho <dscho>2001-10-10 15:07:17 +0000
committerdscho <dscho>2001-10-10 15:07:17 +0000
commitfad7881732f39780fecd0a0c678392f002b88e26 (patch)
treee04eb7c43100a2eefd51222fb15550b289c882dd /rfb.h
parent631d3be5408c9b487bb75ecc25177de4901b71d5 (diff)
downloadlibtdevnc-fad7881732f39780fecd0a0c678392f002b88e26.tar.gz
libtdevnc-fad7881732f39780fecd0a0c678392f002b88e26.zip
pthreads corrections
Diffstat (limited to 'rfb.h')
-rw-r--r--rfb.h45
1 files changed, 25 insertions, 20 deletions
diff --git a/rfb.h b/rfb.h
index 24ee3c0..2914a85 100644
--- a/rfb.h
+++ b/rfb.h
@@ -172,7 +172,7 @@ typedef struct {
#undef MUTEX
#define MUTEX(mutex) char dummy##mutex
#undef COND
-#define COND(cont) char dummy##cond
+#define COND(cond) char dummy##cond
#endif
/*
@@ -280,11 +280,6 @@ typedef struct
char* underCursorBuffer;
Bool dontConvertRichCursorToXCursor;
struct rfbCursor* cursor;
- MUTEX(cursorMutex);
-
-#ifdef HAVE_PTHREADS
- Bool backgroundLoop;
-#endif
/* the following members have to be supplied by the serving process */
char* frameBuffer;
@@ -300,6 +295,11 @@ typedef struct
/* displayHook is called just before a frame buffer update */
DisplayHookPtr displayHook;
+ MUTEX(cursorMutex);
+#ifdef HAVE_PTHREADS
+ Bool backgroundLoop;
+#endif
+
} rfbScreenInfo, *rfbScreenInfoPtr;
@@ -398,20 +398,6 @@ typedef struct rfbClientRec {
int copyDX, copyDY; /* the translation by which the copy happens */
-#ifdef HAVE_PTHREADS
- /* whenever a client is referenced, the refCount has to be incremented
- and afterwards decremented.
- Use the functions rfbIncrClientRef(cl) and rfbDecrClientRef(cl);
- */
- int refCount;
- MUTEX(refCountMutex);
- COND(deleteCond);
-
- MUTEX(outputMutex);
- MUTEX(updateMutex);
- COND(updateCond);
-#endif
-
sraRegionPtr modifiedRegion;
/* As part of the FramebufferUpdateRequest, a client can express interest
@@ -488,6 +474,20 @@ typedef struct rfbClientRec {
struct rfbClientRec *prev;
struct rfbClientRec *next;
+#ifdef HAVE_PTHREADS
+ /* whenever a client is referenced, the refCount has to be incremented
+ and afterwards decremented.
+ Use the functions rfbIncrClientRef(cl) and rfbDecrClientRef(cl);
+ */
+ int refCount;
+ MUTEX(refCountMutex);
+ COND(deleteCond);
+
+ MUTEX(outputMutex);
+ MUTEX(updateMutex);
+ COND(updateCond);
+#endif
+
} rfbClientRec, *rfbClientPtr;
@@ -742,6 +742,11 @@ void doNothingWithClient(rfbClientPtr cl);
extern rfbScreenInfoPtr rfbGetScreen(int argc,char** argv,
int width,int height,int bitsPerSample,int samplesPerPixel,
int bytesPerPixel);
+#ifdef HAVE_PTHREADS
+#define rfbInitServer rfbInitServerWithPthreads
+#else
+#define rfbInitServer rfbInitServerWithoutPthreads
+#endif
extern void rfbInitServer(rfbScreenInfoPtr rfbScreen);
extern void rfbScreenCleanup(rfbScreenInfoPtr screenInfo);