summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Mistachkin <joe@mistachkin.com>2015-05-27 22:34:53 (GMT)
committerJoe Mistachkin <joe@mistachkin.com>2015-05-27 22:34:53 (GMT)
commited5453934369f6fb2b7b45f8ef1e9854e7268679 (patch)
tree71ca1aaad8738c90d56250145b42c5c2f1ee906c
parent1b423f2d3a9c5f583ea4cf826489aa9f07c2a1ca (diff)
downloadtcl-experimental.zip
tcl-experimental.tar.gz
tcl-experimental.tar.bz2
Fix typo in previous check-in.experimental
-rw-r--r--unix/tclUnixNotfy.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/unix/tclUnixNotfy.c b/unix/tclUnixNotfy.c
index 2941331..219dd75 100644
--- a/unix/tclUnixNotfy.c
+++ b/unix/tclUnixNotfy.c
@@ -1358,8 +1358,8 @@ AtForkPrepare(void)
static void
AtForkParent(void)
{
- TclpMutexLock();
- TclpMasterLock();
+ TclpMutexUnlock();
+ TclpMasterUnlock();
Tcl_MutexUnlock(&notifierMutex);
}
@@ -1382,8 +1382,8 @@ AtForkParent(void)
static void
AtForkChild(void)
{
- TclpMutexLock();
- TclpMasterLock();
+ TclpMutexUnlock();
+ TclpMasterUnlock();
Tcl_MutexUnlockAndFinalize(&notifierMutex);
Tcl_InitNotifier();
}