diff options
author | Jeremy Huddleston Sequoia <jeremyhu@apple.com> | 2016-09-19 00:21:44 -0700 |
---|---|---|
committer | Jeremy Huddleston Sequoia <jeremyhu@apple.com> | 2016-09-22 14:55:02 -0700 |
commit | 7d6ebf3f4e4d517bb846d15a5deb131da19a267c (patch) | |
tree | b9fcd39fc63c759671d2af105af1fbeb5a6eece5 /test | |
parent | 8bc4727f475321a8adcbbd859f3f8dd9eeb64aa4 (diff) |
XQuartz: Adopt input_lock() and input_unlock()
This allows us to remove darwinEvents_lock() and darwinEvents_unlock()
and remove the serverRunning hack from dix
Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/ddxstubs.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/test/ddxstubs.c b/test/ddxstubs.c index 3647dc556..58bc0c428 100644 --- a/test/ddxstubs.c +++ b/test/ddxstubs.c @@ -83,26 +83,10 @@ LegalModifier(unsigned int key, DeviceIntPtr pDev) } #ifdef XQUARTZ -#include <pthread.h> - -BOOL serverRunning = TRUE; -pthread_mutex_t serverRunningMutex = PTHREAD_MUTEX_INITIALIZER; -pthread_cond_t serverRunningCond = PTHREAD_COND_INITIALIZER; - int darwinMainScreenX = 0; int darwinMainScreenY = 0; BOOL no_configure_window = FALSE; - -void -darwinEvents_lock(void) -{ -} - -void -darwinEvents_unlock(void) -{ -} #endif #ifdef DDXBEFORERESET |