diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-18 09:50:37 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-18 09:50:37 (GMT) |
commit | 13a2801fd71cf3c45131e929852f100259df6eaf (patch) | |
tree | c945d6b5352f04dfb8dcda9435522ae38bf25c51 /unix/tclUnixNotfy.c | |
parent | 995aaf8bfd5f8a4eff19f4704eb29d67dcab3605 (diff) | |
parent | 1be35f340f98dc2d8ff29d5d5c1fc4709f424fc8 (diff) | |
download | tcl-13a2801fd71cf3c45131e929852f100259df6eaf.zip tcl-13a2801fd71cf3c45131e929852f100259df6eaf.tar.gz tcl-13a2801fd71cf3c45131e929852f100259df6eaf.tar.bz2 |
Fix [e6f27aa56fa51bfc1752ce768bf0d301c60bfd2c|e6f27aa56f]: Update libtommath to 1.0
Diffstat (limited to 'unix/tclUnixNotfy.c')
-rw-r--r-- | unix/tclUnixNotfy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixNotfy.c b/unix/tclUnixNotfy.c index 9f9301f..e37962d 100644 --- a/unix/tclUnixNotfy.c +++ b/unix/tclUnixNotfy.c @@ -150,8 +150,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. * |