diff options
author | Joe Mistachkin <joe@mistachkin.com> | 2015-05-27 22:34:53 (GMT) |
---|---|---|
committer | Joe Mistachkin <joe@mistachkin.com> | 2015-05-27 22:34:53 (GMT) |
commit | d249a8af5d7eaaed1b6e7251a696ce0c68f3a86c (patch) | |
tree | 71ca1aaad8738c90d56250145b42c5c2f1ee906c /unix/tclUnixNotfy.c | |
parent | e8d057ad672b4675495c308059b951afaa3ce020 (diff) | |
download | tcl-d249a8af5d7eaaed1b6e7251a696ce0c68f3a86c.zip tcl-d249a8af5d7eaaed1b6e7251a696ce0c68f3a86c.tar.gz tcl-d249a8af5d7eaaed1b6e7251a696ce0c68f3a86c.tar.bz2 |
Fix typo in previous check-in.
Diffstat (limited to 'unix/tclUnixNotfy.c')
-rw-r--r-- | unix/tclUnixNotfy.c | 8 |
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(¬ifierMutex); } @@ -1382,8 +1382,8 @@ AtForkParent(void) static void AtForkChild(void) { - TclpMutexLock(); - TclpMasterLock(); + TclpMutexUnlock(); + TclpMasterUnlock(); Tcl_MutexUnlockAndFinalize(¬ifierMutex); Tcl_InitNotifier(); } |