diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-09-24 03:36:30 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-09-24 03:36:30 +0000 |
commit | 5f08fbcd6341ee0f8f3c7dfe721098c3bfae1c67 (patch) | |
tree | a70127e53b67320af4d734e666f8494d502244f6 /intrpvar.h | |
parent | 34b5802582e6ac0ab95ef6940fa408896842b141 (diff) | |
download | perl-5f08fbcd6341ee0f8f3c7dfe721098c3bfae1c67.tar.gz |
provide locked access to string table for USE_THREADS
p4raw-id: //depot/perl@1863
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/intrpvar.h b/intrpvar.h index dfdcca8e1c..1f6244d557 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -199,6 +199,7 @@ PERLVAR(Isublex_info, SUBLEXINFO) /* from toke.c */ #ifdef USE_THREADS PERLVAR(Ithrsv, SV *) /* struct perl_thread for main thread */ PERLVARI(Ithreadnum, U32, 0) /* incremented each thread creation */ +PERLVAR(Istrtab_mutex, perl_mutex) /* Mutex for string table access */ #endif /* USE_THREADS */ PERLVARI(Ibytecode_iv_overflows,int, 0) /* from bytecode.h */ |