summaryrefslogtreecommitdiff
path: root/perlvars.h
diff options
context:
space:
mode:
authorArtur Bergman <sky@nanisky.com>2001-09-21 07:35:30 +0000
committerArtur Bergman <sky@nanisky.com>2001-09-21 07:35:30 +0000
commit4f896ddced4dda29739348c5b97bf4f1d7cd7e11 (patch)
treea5cf4553b387de272f2e2777c637c03a14700a4d /perlvars.h
parent9bedc915eb93569a1e9ab0b8265e8ffaa6002916 (diff)
downloadperl-4f896ddced4dda29739348c5b97bf4f1d7cd7e11.tar.gz
Add the shared sv space to the global vars.
Fix problems compiling on win32. p4raw-id: //depot/perl@12102
Diffstat (limited to 'perlvars.h')
-rw-r--r--perlvars.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/perlvars.h b/perlvars.h
index ff56195e3a..704192422a 100644
--- a/perlvars.h
+++ b/perlvars.h
@@ -37,4 +37,6 @@ PERLVAR(Gmalloc_mutex, perl_mutex) /* Mutex for malloc */
#if defined(USE_ITHREADS)
PERLVAR(Gop_mutex, perl_mutex) /* Mutex for op refcounting */
+PERLVAR(Gsharedsv_space, PerlInterpreter*) /* The shared sv space */
+PERLVAR(Gsharedsv_space_mutex, perl_mutex) /* Mutex protecting the shared sv space */
#endif