summaryrefslogtreecommitdiff
path: root/perlapi.h
diff options
context:
space:
mode:
authorNick Ing-Simmons <nik@tiuk.ti.com>2002-01-13 23:22:34 +0000
committerNick Ing-Simmons <nik@tiuk.ti.com>2002-01-13 23:22:34 +0000
commit1d83caecd68b7fad9cafb45a3924f447b39b8c02 (patch)
treee44c8daa8bd02ecc53ddfb4efeac662d1d1ed896 /perlapi.h
parentbb4fffb23ee8a378463f5a412cacd3ad5594a11d (diff)
downloadperl-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.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/perlapi.h b/perlapi.h
index 3d74ecd281..76eb92f2c5 100644
--- a/perlapi.h
+++ b/perlapi.h
@@ -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