Changeset 323 for trunk/thune/gc.c

Show
Ignore:
Timestamp:
12/26/06 22:10:34 (2 years ago)
Author:
krobillard
Message:

Rune is now stand-alone.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/thune/gc.c

    r312 r323  
    449449 
    450450 
     451#ifdef LANG_THUNE 
    451452static void _checkControlStack( UThread* ur_thread ) 
    452453{ 
     
    504505    } 
    505506} 
     507#endif 
     508 
     509 
     510#ifdef LANG_RUNE 
     511static void _checkControlStack( UThread* ur_thread ) 
     512{ 
     513    UBlock blk; 
     514 
     515    blk.ptr.cells = UR_BOC; 
     516    blk.used      = UR_TOC - UR_BOC; 
     517 
     518    assert( blk.used > -1 ); 
     519 
     520    _checkBlock( ur_thread->env, &blk ); 
     521} 
     522#endif 
    506523 
    507524