diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2014-06-23 07:01:34 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2014-06-24 16:40:24 -0400 |
commit | 23491f1decae17401c5c08e7f8a11e0d30f4f0e2 (patch) | |
tree | 4d0e6e8937eed80b3b057f9fc9dbe5365156cad4 /reentr.c | |
parent | a312a4316d03f9525260e26cef9e101ca6257958 (diff) | |
download | perl-23491f1decae17401c5c08e7f8a11e0d30f4f0e2.tar.gz |
Unused contexts found under PERL_GLOBAL_STRUCT.
Diffstat (limited to 'reentr.c')
-rw-r--r-- | reentr.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -29,6 +29,7 @@ void Perl_reentrant_size(pTHX) { + PERL_UNUSED_CONTEXT; #ifdef USE_REENTRANT_API #define REENTRANTSMALLSIZE 256 /* Make something up. */ #define REENTRANTUSUALSIZE 4096 /* Make something up. */ @@ -139,6 +140,7 @@ Perl_reentrant_size(pTHX) { void Perl_reentrant_init(pTHX) { + PERL_UNUSED_CONTEXT; #ifdef USE_REENTRANT_API Newx(PL_reentrant_buffer, 1, REENTR); Perl_reentrant_size(aTHX); @@ -215,6 +217,7 @@ Perl_reentrant_init(pTHX) { void Perl_reentrant_free(pTHX) { + PERL_UNUSED_CONTEXT; #ifdef USE_REENTRANT_API #ifdef HAS_ASCTIME_R Safefree(PL_reentrant_buffer->_asctime_buffer); |