From 8310e7fa48c5bce320e9c36df267f587d84cebce Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Wed, 15 Aug 2018 15:45:14 -0600 Subject: Add mutex for dealing with qr/\p{user-defined}/ This will be used in future commits --- perlvars.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'perlvars.h') diff --git a/perlvars.h b/perlvars.h index 8a4ff6a47b..331105e841 100644 --- a/perlvars.h +++ b/perlvars.h @@ -307,6 +307,10 @@ PERLVAR(G, utf8_mark, SV *) PERLVAR(G, InBitmap, SV *) PERLVAR(G, CCC_non0_non230, SV *) +#if defined(USE_ITHREADS) +PERLVAR(G, user_prop_mutex, perl_mutex) +#endif + /* Everything that folds to a given character, for case insensitivity regex * matching */ PERLVAR(G, utf8_foldclosures, SV *) -- cgit v1.2.1