diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-03-19 21:20:46 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-03-19 21:45:43 +0000 |
commit | 55fa63f5f326538bec794ff6b165abff1ea07579 (patch) | |
tree | dc2799af385b6c33ddf33f4491b26385734af3a1 /ext/NDBM_File | |
parent | c5e332f090ce9c2798f0408dd54b7d8fa3d2961e (diff) | |
download | perl-55fa63f5f326538bec794ff6b165abff1ea07579.tar.gz |
Add PERL_NO_GET_CONTEXT to NDBM_File
For threaded platforms, this reduces the object code size, and should slightly
reduce CPU usage.
Diffstat (limited to 'ext/NDBM_File')
-rw-r--r-- | ext/NDBM_File/NDBM_File.xs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/NDBM_File/NDBM_File.xs b/ext/NDBM_File/NDBM_File.xs index af8f02f674..52e60fc88b 100644 --- a/ext/NDBM_File/NDBM_File.xs +++ b/ext/NDBM_File/NDBM_File.xs @@ -1,3 +1,5 @@ +#define PERL_NO_GET_CONTEXT + #include "EXTERN.h" #include "perl.h" #include "XSUB.h" |