Changes between Version 10 and Version 11 of GCTasklist
- Timestamp:
- 01/02/09 07:51:43 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GCTasklist
v10 v11 8 8 9 9 - Rename files in src/gc for sanity, suggested names: 10 * gc_gms.c -> generational_ms.c11 * gc_ims.c -> incremental_ms.c12 * dod.c -> api.c (it defines the public interface to the GC system, including 'pobject_lives')13 10 * memory.c -> alloc_memory.c or mem_allocate.c 14 11 * register.c -> alloc_registers.c or reg_allocate.c 15 12 * resources.c -> alloc_resources.c or resource_allocate.c 16 13 17 - Rename all API functions to Parrot_gc_*.18 14 19 15 - If there are any non-API functions in src/gc/api.c move them into another file, possibly src/gc/common.c to indicate that they're internal to the GC system only, but shared between all the GC modules. … … 26 22 27 23 == Completed Tasks == 24 25 ---- 26 27 Renamed all API functions to Parrot_gc_* (r34775). 28 29 30 ---- 31 32 Renamed files: 33 34 * dod.c -> api.c and dod.h -> gc_api.h (r34774) 35 * gc_gms.c -> generational_ms.c (r34795) 36 * gc_ims.c -> incremental_ms.c (r34796) 37 28 38 29 39 ----