summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-05-12 04:49:57 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-05-12 04:49:57 +0000
commitbce260cd95d1dd29e348f40a7f6682c3d7fea3fc (patch)
tree44a7836eac025dccd14046f3054367a0aedb8786 /sv.c
parent07275143b4e1e59494d5cc98fdc4e0f06235b0e9 (diff)
downloadperl-bce260cd95d1dd29e348f40a7f6682c3d7fea3fc.tar.gz
More moves to intrpvar.h.
p4raw-id: //depot/perl@19499
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sv.c b/sv.c
index 131450d7ae..423bb0487f 100644
--- a/sv.c
+++ b/sv.c
@@ -11223,6 +11223,13 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags,
PL_unlockhook = proto_perl->Iunlockhook;
PL_threadhook = proto_perl->Ithreadhook;
+ PL_runops_std = proto_perl->Irunops_std;
+ PL_runops_dbg = proto_perl->Irunops_dbg;
+
+#ifdef THREADS_HAVE_PIDS
+ PL_ppid = proto_perl->Ippid;
+#endif
+
/* swatch cache */
PL_last_swash_hv = Nullhv; /* reinits on demand */
PL_last_swash_klen = 0;