PL_reentrant_buffer does not exist in 5005threaded perl.
Artur Bergman [Sat, 18 Aug 2001 14:38:01 +0000 (14:38 +0000)]
Better solution would be to make 5005threaded perl use
the same system as ithreads do

p4raw-id: //depot/perl@11718

perl.h

diff --git a/perl.h b/perl.h
index 08dbd2a..a85cbf6 100644 (file)
--- a/perl.h
+++ b/perl.h
@@ -439,7 +439,7 @@ register struct op *Perl_op asm(stringify(OP_IN_REGISTER));
 #endif
 
 /* Use the reentrant APIs like localtime_r and getpwent_r */
-#if (defined(USE_THREADS) || defined(USE_ITHREADS)) && !defined(USE_REENTRANT_API)
+#if defined(USE_ITHREADS) && !defined(USE_REENTRANT_API)
 #   define USE_REENTRANT_API
 #endif