Show
Ignore:
Timestamp:
06/22/07 20:53:36 (17 months ago)
Author:
krobillard
Message:

Rune works again.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/thune/thread_safe/unix/os.c

    r387 r418  
    313313 
    314314#if 0 
    315 static void _callOutput( UThread* thread, UCell* tos ) 
     315static void _callOutput( UThread* ut, UCell* tos ) 
    316316{ 
    317317#define BUFSIZE     512 
     
    386386static int _asyncProcCount = 0; 
    387387 
    388 static void _callSimple( UThread* thread, UCell* tos ) 
     388static void _callSimple( UThread* ut, UCell* tos ) 
    389389{ 
    390390    int pid; 
     
    461461    if( orRefineSet( REF_CALL_OUTPUT ) ) 
    462462    { 
    463         _callOutput( thread, tos ); 
     463        _callOutput( ut, tos ); 
    464464    } 
    465465    else 
    466466    */ 
    467467    { 
    468         _callSimple( thread, tos ); 
     468        _callSimple( ut, tos ); 
    469469    } 
    470470}