summaryrefslogtreecommitdiff
path: root/pp_sys.c
diff options
context:
space:
mode:
authorCoral <coral@moonlight.crystalflame.net>2001-07-16 07:25:19 -0700
committerNick Ing-Simmons <nik@tiuk.ti.com>2001-07-17 07:50:12 +0000
commit8ff9412f9ef1dbdabee4f0993653e1446d7a88c8 (patch)
tree7055b22cc4ec19290144d90c64493350e760a8ed /pp_sys.c
parent11946041b5e3fb6ece0f34961bb0290ea36d7d61 (diff)
downloadperl-8ff9412f9ef1dbdabee4f0993653e1446d7a88c8.tar.gz
fix PTHREAD_ATFORK croaking too early, too often
Message-Id: <200107162125.f6GLPJ345261@moonlight.crystalflame.net> p4raw-id: //depot/perl@11392
Diffstat (limited to 'pp_sys.c')
-rw-r--r--pp_sys.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/pp_sys.c b/pp_sys.c
index 0451d5a802..6a74b115de 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -3874,6 +3874,10 @@ PP(pp_fork)
Pid_t childpid;
GV *tmpgv;
+# if defined(USE_ITHREADS) && !defined(HAS_PTHREAD_ATFORK)
+ Perl_croak(aTHX_ "No pthread_atfork() -- fork() too unsafe");
+# endif
+
EXTEND(SP, 1);
PERL_FLUSHALL_FOR_CHILD;
childpid = fork();