summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixTest.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-08-05 22:00:58 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-08-05 22:00:58 (GMT)
commit50a950f2b10879c2f606b8bed76a79b6d5f2c381 (patch)
tree56e6c4e66ddff63d098281e220a414f4d18ffc04 /unix/tclUnixTest.c
parent861b34625cd9a137d81f848b63c70e1f8318ba35 (diff)
parentc74640849ef38c01a98a0a1338f72bbb56668d5e (diff)
downloadtcl-50a950f2b10879c2f606b8bed76a79b6d5f2c381.zip
tcl-50a950f2b10879c2f606b8bed76a79b6d5f2c381.tar.gz
tcl-50a950f2b10879c2f606b8bed76a79b6d5f2c381.tar.bz2
Mark unixforkevent-1.1 nonPortable, until proven on more platforms.
Make sure that when testing for pthread_atfork the thread library is taken into account.
Diffstat (limited to 'unix/tclUnixTest.c')
-rw-r--r--unix/tclUnixTest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixTest.c b/unix/tclUnixTest.c
index f64a29e..b3e07a4 100644
--- a/unix/tclUnixTest.c
+++ b/unix/tclUnixTest.c
@@ -566,8 +566,8 @@ TestforkObjCmd(
"Cannot fork", NULL);
return TCL_ERROR;
}
-#ifndef HAVE_PTHREAD_ATFORK
- /* Only needed when pthread_atfork is not present. */
+#if !defined(HAVE_PTHREAD_ATFORK) || defined(MAC_OSX_TCL)
+ /* Only needed when pthread_atfork is not present or on OSX. */
if (pid==0) {
Tcl_InitNotifier();
}