Changes between Version 10 and Version 11 of GCTasklist

Show
Ignore:
Timestamp:
01/02/09 07:51:43 (13 years ago)
Author:
chromatic
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GCTasklist

    v10 v11  
    88 
    99 - Rename files in src/gc for sanity, suggested names: 
    10   * gc_gms.c -> generational_ms.c 
    11   * gc_ims.c -> incremental_ms.c 
    12   * dod.c -> api.c (it defines the public interface to the GC system, including 'pobject_lives') 
    1310  * memory.c -> alloc_memory.c or mem_allocate.c 
    1411  * register.c -> alloc_registers.c or reg_allocate.c 
    1512  * resources.c -> alloc_resources.c or resource_allocate.c 
    1613 
    17  - Rename all API functions to Parrot_gc_*. 
    1814 
    1915 - 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. 
     
    2622 
    2723== Completed Tasks == 
     24 
     25---- 
     26 
     27Renamed all API functions to Parrot_gc_* (r34775). 
     28 
     29 
     30---- 
     31 
     32Renamed 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 
    2838 
    2939----