dix: Remove bogus input_mutex and input_mutex_count definitions from globals.c

These are local to inputthread.c; the ones in globals.c aren't
declared in any header file.

Signed-off-by: Keith Packard <keithp@keithp.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Keith Packard 2016-05-29 19:05:13 -07:00
parent 06bdc3bc1a
commit 2bed654be7

View File

@ -132,12 +132,3 @@ Bool explicit_display = FALSE;
char *ConnectionInfo;
CARD32 TimeOutValue = DEFAULT_TIMEOUT * MILLI_PER_SECOND;
#if DEBUG_INPUT_MUTEX
#define INPUT_MUTEX_INITIALIZER PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP
#else
#define INPUT_MUTEX_INITIALIZER PTHREAD_MUTEX_INITIALIZER
#endif
pthread_mutex_t input_mutex = INPUT_MUTEX_INITIALIZER;
__thread int input_mutex_count;