summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixTest.c
diff options
context:
space:
mode:
authornijtmans@users.sourceforge.net <jan.nijtmans>2013-10-29 08:15:36 (GMT)
committernijtmans@users.sourceforge.net <jan.nijtmans>2013-10-29 08:15:36 (GMT)
commitba6e389573e0e71f8363e6a0c64e1dc53b4d5012 (patch)
tree54539f7c4d754c72776d5bc2f0ce2c455aafe623 /unix/tclUnixTest.c
parent7d424d21c3934ce5f67354c4695330488f41cbc3 (diff)
downloadtcl-ba6e389573e0e71f8363e6a0c64e1dc53b4d5012.zip
tcl-ba6e389573e0e71f8363e6a0c64e1dc53b4d5012.tar.gz
tcl-ba6e389573e0e71f8363e6a0c64e1dc53b4d5012.tar.bz2
Workaround for [414d10346b]: tcl 8.5.15/8.6.1(threaded build) hangs in exec on HP-UX
Diffstat (limited to 'unix/tclUnixTest.c')
-rw-r--r--unix/tclUnixTest.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/unix/tclUnixTest.c b/unix/tclUnixTest.c
index bb16f3b..0747c2d 100644
--- a/unix/tclUnixTest.c
+++ b/unix/tclUnixTest.c
@@ -574,12 +574,11 @@ TestforkObjCmd(
"Cannot fork", NULL);
return TCL_ERROR;
}
-#if !defined(HAVE_PTHREAD_ATFORK)
- /* Only needed when pthread_atfork is not present. */
+ /* Only needed when pthread_atfork is not present,
+ * should not hurt otherwise. */
if (pid==0) {
Tcl_InitNotifier();
}
-#endif
Tcl_SetObjResult(interp, Tcl_NewIntObj(pid));
return TCL_OK;
}