diff options
Diffstat (limited to 'unix/tclUnixTest.c')
| -rw-r--r-- | unix/tclUnixTest.c | 5 | 
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;  } | 
