Changeset 477 for trunk/thune/win32/os.c

Show
Ignore:
Timestamp:
09/09/07 18:22:32 (15 months ago)
Author:
krobillard
Message:

Rune & win32 'call compile again.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/thune/win32/os.c

    r473 r477  
    345345#ifdef UR_CONFIG_OS_RUN 
    346346#if 0 
    347 static void _callOutput( UThread* ur_thread, UCell* tos ) 
     347static void _callOutput( UThread* ut, UCell* tos ) 
    348348{ 
    349349#define BUFSIZE     256 
     
    369369    if( ! CreatePipe( &childStdOutR, &childStdOutW, &sec, 0 ) )  
    370370    { 
    371         ur_throwErr( ur_thread, UR_EX_INTERNAL, "CreatePipe failed\n" ); 
     371        ur_throwErr( UR_ERR_INTERNAL, "CreatePipe failed\n" ); 
    372372        return; 
    373373    } 
     
    399399        CloseHandle( childStdOutW ); 
    400400        CloseHandle( childStdOutR ); 
    401         ur_throwErr( ur_thread, UR_EX_INTERNAL, 
     401        ur_throwErr( UR_ERR_INTERNAL, 
    402402                     "CreateProcess failed (%d).\n", GetLastError() ); 
    403403        return; 
     
    451451 
    452452 
    453 static void _callSimple( UThread* ur_thread, UCell* tos ) 
     453static void _callSimple( UThread* ut, UCell* tos ) 
    454454{ 
    455455    UString* str; 
     
    480480    ) 
    481481    { 
    482         ur_throwErr( ur_thread, UR_EX_INTERNAL, 
     482        ur_throwErr( UR_ERR_INTERNAL, 
    483483                     "CreateProcess failed (%d).\n", GetLastError() ); 
    484484        return; 
     
    518518    if( orRefineSet( REF_CALL_OUTPUT ) ) 
    519519    { 
    520         _callOutput( ur_thread, tos ); 
     520        _callOutput( ut, tos ); 
    521521    } 
    522522    else 
    523523    */ 
    524524    { 
    525         _callSimple( ur_thread, tos ); 
     525        _callSimple( ut, tos ); 
    526526    } 
    527527}