Changeset 136 for trunk/orca/unix
- Timestamp:
- 05/04/06 15:39:15 (3 years ago)
- Files:
-
- 1 modified
-
trunk/orca/unix/os.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/orca/unix/os.c
r98 r136 190 190 191 191 192 #ifdef OR_CONFIG_OS_CALL 192 193 static void argumentList( OString* str, int sindex, char** argv, int maxArg ) 193 194 { … … 361 362 command /output out /wait 362 363 */ 363 void orCallNative( OValue* a1)364 OR_NATIVE_PUB( orCallNative ) 364 365 { 365 366 if( a1->type != OT_STRING ) … … 378 379 } 379 380 } 380 381 381 #endif 382 383 384 #ifdef OR_CONFIG_OS_CALL 382 385 /* Cleans up after callSimple() */ 383 386 static void child_handler( int sig ) … … 392 395 } 393 396 } 397 #endif 394 398 395 399 #if 0 … … 411 415 void orInstallExceptionHandlers() 412 416 { 417 #ifdef OR_CONFIG_OS_CALL 418 /* NOTE: Cannot use this if using Qt's QProcess (it uses SIGCHLD) */ 413 419 struct sigaction childSA; 414 420 … … 418 424 419 425 sigaction( SIGCHLD, &childSA, NULL ); 426 #endif 420 427 421 428 #if 0
