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 | 238a4c30b3724d314933955c5c4a0162eae05ee0 (patch) | |
tree | e44c8daa8bd02ecc53ddfb4efeac662d1d1ed896 /proto.h | |
parent | d5802c9e522d9061ec4d6f117e7f5a9c135969d5 (diff) | |
download | perl-238a4c30b3724d314933955c5c4a0162eae05ee0.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 'proto.h')
-rw-r--r-- | proto.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1043,6 +1043,7 @@ STATIC void S_apply_attrs(pTHX_ HV *stash, SV *target, OP *attrs, bool for_my); STATIC void S_apply_attrs_my(pTHX_ HV *stash, OP *target, OP *attrs, OP **imopsp); # if defined(PL_OP_SLAB_ALLOC) STATIC void* S_Slab_Alloc(pTHX_ int m, size_t sz); +STATIC void S_Slab_Free(pTHX_ void *); # endif #endif |