Revision 29665

Date:
2008/07/22 01:50:19
Author:
Whiteknight
Revision Log:
[gsoc_pdd09] Make GC_finish_FLAG consistent with the other flags.
Files:

Legend:

 
Added
 
Removed
 
Modified
  • branches/gsoc_pdd09/src/gc/gc_it.c

     
    243 243 const UINTVAL gc_stack = flags & GC_trace_stack_FLAG;
    244 244 const UINTVAL gc_lazy = flags & GC_lazy_FLAG;
    245 245 const UINTVAL gc_volatile = flags & GC_no_trace_volatile_roots;
    246 const UINTVAL gc_finish = flags & GC_finish_FLAG;
    246 247
    247 248
    248 if (flags & GC_finish_FLAG) {
    249 if (gc_finish) {
    249 250
    250 251 # if GC_IT_DEBUG
    251 252 fprintf(stderr, "Finalizing GC system\n");