Changeset 418 for branches/thune/thread_safe/unix/os.c
- Timestamp:
- 06/22/07 20:53:36 (17 months ago)
- Files:
-
- 1 modified
-
branches/thune/thread_safe/unix/os.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/thune/thread_safe/unix/os.c
r387 r418 313 313 314 314 #if 0 315 static void _callOutput( UThread* thread, UCell* tos )315 static void _callOutput( UThread* ut, UCell* tos ) 316 316 { 317 317 #define BUFSIZE 512 … … 386 386 static int _asyncProcCount = 0; 387 387 388 static void _callSimple( UThread* thread, UCell* tos )388 static void _callSimple( UThread* ut, UCell* tos ) 389 389 { 390 390 int pid; … … 461 461 if( orRefineSet( REF_CALL_OUTPUT ) ) 462 462 { 463 _callOutput( thread, tos );463 _callOutput( ut, tos ); 464 464 } 465 465 else 466 466 */ 467 467 { 468 _callSimple( thread, tos );468 _callSimple( ut, tos ); 469 469 } 470 470 }
