summaryrefslogtreecommitdiff
path: root/perlvars.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-05-11 20:17:30 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-05-11 20:17:30 +0000
commit15a5279aa74a37f0ad0b3fa3f9e566cb2d7a9d9a (patch)
tree97a9ecf94514fc664416eb326534f138f4e423be /perlvars.h
parent815f25c6e302f84ecce02c74fa717a19d787f662 (diff)
downloadperl-15a5279aa74a37f0ad0b3fa3f9e566cb2d7a9d9a.tar.gz
Move the thread *hook into interpreter.
p4raw-id: //depot/perl@19497
Diffstat (limited to 'perlvars.h')
-rw-r--r--perlvars.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/perlvars.h b/perlvars.h
index f9a87a9202..495aa11688 100644
--- a/perlvars.h
+++ b/perlvars.h
@@ -52,12 +52,6 @@ PERLVAR(Gop_mutex, perl_mutex) /* Mutex for op refcounting */
PERLVARI(Grunops_std, runops_proc_t, MEMBER_TO_FPTR(Perl_runops_standard))
PERLVARI(Grunops_dbg, runops_proc_t, MEMBER_TO_FPTR(Perl_runops_debug))
-/* Hooks to shared SVs and locks. */
-PERLVARI(Gsharehook, share_proc_t, MEMBER_TO_FPTR(Perl_sv_nosharing))
-PERLVARI(Glockhook, share_proc_t, MEMBER_TO_FPTR(Perl_sv_nolocking))
-PERLVARI(Gunlockhook, share_proc_t, MEMBER_TO_FPTR(Perl_sv_nounlocking))
-PERLVARI(Gthreadhook, thrhook_proc_t, MEMBER_TO_FPTR(Perl_nothreadhook))
-
/* Stores the PPID */
#ifdef THREADS_HAVE_PIDS
PERLVARI(Gppid, IV, 0)