summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixNotfy.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2015-06-16 15:24:51 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2015-06-16 15:24:51 (GMT)
commit61235a19fdbc4ccea9e122d0be34888ab92fc798 (patch)
treef9ed27e54ccf335ed3a7b3975210030637754b77 /unix/tclUnixNotfy.c
parentbd5043a0eea076716ef8b53a0985464965165bd9 (diff)
downloadtcl-61235a19fdbc4ccea9e122d0be34888ab92fc798.zip
tcl-61235a19fdbc4ccea9e122d0be34888ab92fc798.tar.gz
tcl-61235a19fdbc4ccea9e122d0be34888ab92fc798.tar.bz2
Change Tcl_MutexUnlockAndFinalize() to internal function TclpMutexUnlockAndFinalize(). This does not require a TIP, and still should fix the reported bug.
Diffstat (limited to 'unix/tclUnixNotfy.c')
-rw-r--r--unix/tclUnixNotfy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixNotfy.c b/unix/tclUnixNotfy.c
index 219dd75..a009fb1 100644
--- a/unix/tclUnixNotfy.c
+++ b/unix/tclUnixNotfy.c
@@ -1384,7 +1384,7 @@ AtForkChild(void)
{
TclpMutexUnlock();
TclpMasterUnlock();
- Tcl_MutexUnlockAndFinalize(&notifierMutex);
+ TclpMutexUnlockAndFinalize(&notifierMutex);
Tcl_InitNotifier();
}
#endif /* HAVE_PTHREAD_ATFORK */