From 4f896ddced4dda29739348c5b97bf4f1d7cd7e11 Mon Sep 17 00:00:00 2001 From: Artur Bergman Date: Fri, 21 Sep 2001 07:35:30 +0000 Subject: Add the shared sv space to the global vars. Fix problems compiling on win32. p4raw-id: //depot/perl@12102 --- embedvar.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'embedvar.h') diff --git a/embedvar.h b/embedvar.h index 21a11f5665..d2e15a0801 100644 --- a/embedvar.h +++ b/embedvar.h @@ -1323,6 +1323,8 @@ #define PL_malloc_mutex (PL_Vars.Gmalloc_mutex) #define PL_op_mutex (PL_Vars.Gop_mutex) #define PL_patleave (PL_Vars.Gpatleave) +#define PL_sharedsv_space (PL_Vars.Gsharedsv_space) +#define PL_sharedsv_space_mutex (PL_Vars.Gsharedsv_space_mutex) #define PL_thr_key (PL_Vars.Gthr_key) #else /* !PERL_GLOBAL_STRUCT */ @@ -1335,6 +1337,8 @@ #define PL_Gmalloc_mutex PL_malloc_mutex #define PL_Gop_mutex PL_op_mutex #define PL_Gpatleave PL_patleave +#define PL_Gsharedsv_space PL_sharedsv_space +#define PL_Gsharedsv_space_mutex PL_sharedsv_space_mutex #define PL_Gthr_key PL_thr_key #endif /* PERL_GLOBAL_STRUCT */ -- cgit v1.2.1