diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2002-01-13 23:22:34 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2002-01-13 23:22:34 +0000 |
commit | 1d83caecd68b7fad9cafb45a3924f447b39b8c02 (patch) | |
tree | e44c8daa8bd02ecc53ddfb4efeac662d1d1ed896 /perlapi.h | |
parent | bb4fffb23ee8a378463f5a412cacd3ad5594a11d (diff) | |
download | perl-1d83caecd68b7fad9cafb45a3924f447b39b8c02.tar.gz |
Slab allocator for ops
- moved the statics to intrpvar.h
- implemented Slab_Free()
- uses PerlMemShared (for now) if distinction exists.
p4raw-id: //depot/perlio@14250
Diffstat (limited to 'perlapi.h')
-rw-r--r-- | perlapi.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -103,6 +103,12 @@ END_EXTERN_C #define PL_MemParse (*Perl_IMemParse_ptr(aTHX)) #undef PL_MemShared #define PL_MemShared (*Perl_IMemShared_ptr(aTHX)) +#undef PL_OpPtr +#define PL_OpPtr (*Perl_IOpPtr_ptr(aTHX)) +#undef PL_OpSlab +#define PL_OpSlab (*Perl_IOpSlab_ptr(aTHX)) +#undef PL_OpSpace +#define PL_OpSpace (*Perl_IOpSpace_ptr(aTHX)) #undef PL_Proc #define PL_Proc (*Perl_IProc_ptr(aTHX)) #undef PL_Sock |