Changeset 477 for trunk/thune/win32/os.c
- Timestamp:
- 09/09/07 18:22:32 (15 months ago)
- Files:
-
- 1 modified
-
trunk/thune/win32/os.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/thune/win32/os.c
r473 r477 345 345 #ifdef UR_CONFIG_OS_RUN 346 346 #if 0 347 static void _callOutput( UThread* u r_thread, UCell* tos )347 static void _callOutput( UThread* ut, UCell* tos ) 348 348 { 349 349 #define BUFSIZE 256 … … 369 369 if( ! CreatePipe( &childStdOutR, &childStdOutW, &sec, 0 ) ) 370 370 { 371 ur_throwErr( ur_thread, UR_EX_INTERNAL, "CreatePipe failed\n" );371 ur_throwErr( UR_ERR_INTERNAL, "CreatePipe failed\n" ); 372 372 return; 373 373 } … … 399 399 CloseHandle( childStdOutW ); 400 400 CloseHandle( childStdOutR ); 401 ur_throwErr( ur_thread, UR_EX_INTERNAL,401 ur_throwErr( UR_ERR_INTERNAL, 402 402 "CreateProcess failed (%d).\n", GetLastError() ); 403 403 return; … … 451 451 452 452 453 static void _callSimple( UThread* u r_thread, UCell* tos )453 static void _callSimple( UThread* ut, UCell* tos ) 454 454 { 455 455 UString* str; … … 480 480 ) 481 481 { 482 ur_throwErr( ur_thread, UR_EX_INTERNAL,482 ur_throwErr( UR_ERR_INTERNAL, 483 483 "CreateProcess failed (%d).\n", GetLastError() ); 484 484 return; … … 518 518 if( orRefineSet( REF_CALL_OUTPUT ) ) 519 519 { 520 _callOutput( u r_thread, tos );520 _callOutput( ut, tos ); 521 521 } 522 522 else 523 523 */ 524 524 { 525 _callSimple( u r_thread, tos );525 _callSimple( ut, tos ); 526 526 } 527 527 }
