diff options
author | Karl Williamson <khw@cpan.org> | 2016-04-06 21:46:28 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2016-04-09 13:59:24 -0600 |
commit | 929e12133425199fce3fe026156c10876ac0cbb8 (patch) | |
tree | 95286d2bc13b80afe4ed3872c14fd9c081235260 /vms/vmsish.h | |
parent | 68b940afc96546256736bc5d8185075ddc12b205 (diff) | |
download | perl-929e12133425199fce3fe026156c10876ac0cbb8.tar.gz |
Add locale mutex
This adds a new mutex for use in the next commit for use with locale
handling.
Diffstat (limited to 'vms/vmsish.h')
-rw-r--r-- | vms/vmsish.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vms/vmsish.h b/vms/vmsish.h index cf1c9a8552..1aea82944c 100644 --- a/vms/vmsish.h +++ b/vms/vmsish.h @@ -315,7 +315,8 @@ struct interp_intern { #define BIT_BUCKET "/dev/null" #define PERL_SYS_INIT_BODY(c,v) MALLOC_CHECK_TAINT2(*c,*v) vms_image_init((c),(v)); PERLIO_INIT; MALLOC_INIT -#define PERL_SYS_TERM_BODY() HINTS_REFCNT_TERM; OP_REFCNT_TERM; PERLIO_TERM; MALLOC_TERM +#define PERL_SYS_TERM_BODY() HINTS_REFCNT_TERM; OP_REFCNT_TERM; \ + PERLIO_TERM; MALLOC_TERM; LOCALE_TERM #define dXSUB_SYS #define HAS_KILL #define HAS_WAIT |