Skip to content

Commit

Permalink
add c function documentation (probably needs to be reviewed)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikehh committed Feb 8, 2011
1 parent 536df45 commit c30c825
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/gc/gc_gms.c
Expand Up @@ -945,6 +945,16 @@ gc_gms_process_dirty_list(PARROT_INTERP,
Parrot_gc_mark_PMC_alive(interp, PMC_metadata(pmc)););
}

/*
=item C<static void gc_gms_process_work_list(PARROT_INTERP, MarkSweep_GC *self,
Parrot_Pointer_Array *work_list)>
Process work list moving objects back to own generation
=cut
*/
static void
gc_gms_process_work_list(PARROT_INTERP,
ARGIN(MarkSweep_GC *self),
Expand Down Expand Up @@ -2112,6 +2122,19 @@ gc_gms_print_stats(PARROT_INTERP, ARGIN(const char* header), int gen)

}

/*
=item C<static void gc_gms_validate_pmc(PARROT_INTERP, PMC *pmc)>
=item C<static void gc_gms_validate_str(PARROT_INTERP, STRING *str)>
=item C<static void gc_gms_validate_objects(PARROT_INTERP)>
Validation routines
=cut
*/
static void
gc_gms_validate_pmc(PARROT_INTERP, ARGIN(PMC *pmc))
{
Expand Down

0 comments on commit c30c825

Please sign in to comment.