summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2007-05-25 23:26:33 +0000
committerDave Mitchell <davem@fdisolutions.com>2007-05-25 23:26:33 +0000
commit4b8f2e61a9bd693bb1aedb3127f6c5d2e1d8c5dc (patch)
tree95bc8902ed80328d670b356902a38c0e46e89344 /sv.c
parentcbb8049cc02620a27212e2f0f3efd2cea8b73cea (diff)
downloadperl-4b8f2e61a9bd693bb1aedb3127f6c5d2e1d8c5dc.tar.gz
delete PL_hash_seed_set, PL_lineary; move PL_runops_std/dbg
the first two aren't used, and the last two are just place holders to ensure that both runops functions get linked in; so make them global rather than per-interpeter p4raw-id: //depot/perl@31280
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/sv.c b/sv.c
index c2c7f4d97e..d5655b3e36 100644
--- a/sv.c
+++ b/sv.c
@@ -11137,7 +11137,6 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags,
PL_DBtrace = sv_dup(proto_perl->IDBtrace, param);
PL_DBsignal = sv_dup(proto_perl->IDBsignal, param);
PL_DBassertion = sv_dup(proto_perl->IDBassertion, param);
- PL_lineary = av_dup(proto_perl->Ilineary, param);
PL_dbargs = av_dup(proto_perl->Idbargs, param);
/* symbol tables */
@@ -11343,9 +11342,6 @@ 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