Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
track change of macro names of PObj_active_destroy_ macros in parrot
See parrot's tt#968 for detail.
Also bumps PARROT_REVISION to r44371
  • Loading branch information
moritz committed Feb 23, 2010
1 parent d6129bc commit 94ada1f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build/PARROT_REVISION
@@ -1 +1 @@
44147 2.1.0
44371
2 changes: 1 addition & 1 deletion src/pmc/mutablevar.pmc
Expand Up @@ -30,7 +30,7 @@ pmclass MutableVAR need_ext dynpmc group perl6_group {
VTABLE void init_pmc(PMC *scalar) {
/* Need custom mark and destroy. */
PObj_custom_mark_SET(SELF);
PObj_active_destroy_SET(SELF);
PObj_custom_destroy_SET(SELF);

/* Create underlying structure and set scalar value. */
PMC_data(SELF) = mem_allocate_zeroed_typed(Parrot_MutableVAR_attributes);
Expand Down
2 changes: 1 addition & 1 deletion src/pmc/p6invocation.pmc
Expand Up @@ -146,7 +146,7 @@ pmclass P6Invocation need_ext dynpmc group perl6_group {
VTABLE void init() {
PMC_data(SELF) = mem_allocate_zeroed_typed(Parrot_P6Invocation_attributes);
PObj_custom_mark_SET(SELF);
PObj_active_destroy_SET(SELF);
PObj_custom_destroy_SET(SELF);
}

VTABLE void init_pmc(PMC *list) {
Expand Down
2 changes: 1 addition & 1 deletion src/pmc/perl6multisub.pmc
Expand Up @@ -864,7 +864,7 @@ Allocates the PMC's underlying storage.

/* Need custom mark and destroy. */
PObj_custom_mark_SET(SELF);
PObj_active_destroy_SET(SELF);
PObj_custom_destroy_SET(SELF);
}

/*
Expand Down

0 comments on commit 94ada1f

Please sign in to comment.