summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2007-01-19 17:36:10 +0000
committerNicholas Clark <nick@ccl4.org>2007-01-19 17:36:10 +0000
commit0a8483324f34cd58f59c599320471525e95a2de3 (patch)
tree0e1a9c47e5e35d38e5b83c85dedf2eb5abd39b35 /proto.h
parent39244528574f0425e97af023e283eee5572107b8 (diff)
downloadperl-0a8483324f34cd58f59c599320471525e95a2de3.tar.gz
Add a parameter to Perl_get_arena() to pass in the SV type, and record
this in the arena description. Change all sizes to unsigned values. Make Perl_sv_free_arenas() loop downwards to free memory, simplifying the logic. Remove my erroneous comment added in change 29881. p4raw-id: //depot/perl@29882
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index e0d2fc4beb..a6f31324e3 100644
--- a/proto.h
+++ b/proto.h
@@ -2958,7 +2958,7 @@ STATIC HV* S_require_tie_mod(pTHX_ GV *gv, const char *varpv, SV* namesv, const
#endif
-PERL_CALLCONV void* Perl_get_arena(pTHX_ size_t svtype)
+PERL_CALLCONV void* Perl_get_arena(pTHX_ size_t svtype, U32 misc)
__attribute__malloc__
__attribute__warn_unused_result__;