summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2019-05-24 20:03:03 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2019-05-24 20:03:03 (GMT)
commitffdd95d4a34bf51846585ceab3d84535a09daefe (patch)
tree2db4f00fd85b6b9820db6ca7285ed75969c5496b /unix
parentcb9018a721f8b149c7add1abdda5826c9385c501 (diff)
downloadtcl-ffdd95d4a34bf51846585ceab3d84535a09daefe.zip
tcl-ffdd95d4a34bf51846585ceab3d84535a09daefe.tar.gz
tcl-ffdd95d4a34bf51846585ceab3d84535a09daefe.tar.bz2
Missing keyword: "static"
Diffstat (limited to 'unix')
-rw-r--r--unix/tclUnixNotfy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixNotfy.c b/unix/tclUnixNotfy.c
index e7ea7a1..db62f73 100644
--- a/unix/tclUnixNotfy.c
+++ b/unix/tclUnixNotfy.c
@@ -160,8 +160,8 @@ static int triggerPipe = -1;
* The notifierMutex locks access to all of the global notifier state.
*/
-pthread_mutex_t notifierInitMutex = PTHREAD_MUTEX_INITIALIZER;
-pthread_mutex_t notifierMutex = PTHREAD_MUTEX_INITIALIZER;
+static pthread_mutex_t notifierInitMutex = PTHREAD_MUTEX_INITIALIZER;
+static pthread_mutex_t notifierMutex = PTHREAD_MUTEX_INITIALIZER;
/*
* The following static indicates if the notifier thread is running.
*