diff options
author | Artur Bergman <sky@nanisky.com> | 2001-09-21 07:35:30 +0000 |
---|---|---|
committer | Artur Bergman <sky@nanisky.com> | 2001-09-21 07:35:30 +0000 |
commit | 4f896ddced4dda29739348c5b97bf4f1d7cd7e11 (patch) | |
tree | a5cf4553b387de272f2e2777c637c03a14700a4d /embedvar.h | |
parent | 9bedc915eb93569a1e9ab0b8265e8ffaa6002916 (diff) | |
download | perl-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 'embedvar.h')
-rw-r--r-- | embedvar.h | 4 |
1 files changed, 4 insertions, 0 deletions
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 */ |