Changeset 508 for trunk/thune/urlan.c

Show
Ignore:
Timestamp:
02/08/08 18:56:30 (10 months ago)
Author:
krobillard
Message:

GC was inadvertently disabled.
Fixed some GC bugs.
Print & recycle now handle macro!.
Fixed bug in ur_release().

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/thune/urlan.c

    r501 r508  
    528528#endif 
    529529 
    530     env->flags = UR_ENV_GC | UR_ENV_SECURE; 
     530    env->flags = UR_ENV_SECURE; 
    531531 
    532532#if 0 
     
    681681    // Make a fresh thread store. 
    682682 
     683    ut->flags &= ~UR_THREAD_GC; 
    683684    ur_threadInitStore( ut, binCount, blkCount ); 
    684685 
     
    695696 
    696697    ur_makeBinary( 0, 0 );       // 0 - BIN_THREAD_TMP 
     698    ut->flags |= UR_THREAD_GC; 
    697699} 
    698700