X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fruntime%2Frun-program.c;h=08feaa19322622b3ef35c9220ab0a70567a5b351;hb=9a19ce460a70a6c1de36095b3e2621116b91cc80;hp=feb8d8d0d4cac74423d106887b06c141f584f57a;hpb=c03ebb54770cfa613d4b706a80e5be231786a5d0;p=sbcl.git diff --git a/src/runtime/run-program.c b/src/runtime/run-program.c index feb8d8d..08feaa1 100644 --- a/src/runtime/run-program.c +++ b/src/runtime/run-program.c @@ -67,6 +67,8 @@ int spawn(char *program, char *argv[], char *envp[], char *pty_name, /* Put us in our own process group. */ #if defined(hpux) setsid(); +#elif defined(LISP_FEATURE_DARWIN) + setpgid(0, getpid()); #elif defined(SVR4) || defined(__linux__) || defined(__osf__) setpgrp(); #else @@ -150,30 +152,32 @@ HANDLE spawn ( int wait ) { - int fdOut, fdIn, fdErr, fdInPipe[2], fdOutPipe[2], fdErrPipe[2], wait_mode; + int stdout_backup, stdin_backup, stderr_backup, wait_mode; HANDLE hProcess; - - /* Make pipes to be passed to the spawned process as in/out/err */ - if ( _pipe ( fdOutPipe, 512, O_TEXT | O_NOINHERIT ) == -1 ) return (HANDLE)-1; - if ( _pipe ( fdInPipe, 512, O_TEXT | O_NOINHERIT ) == -1 ) return (HANDLE)-1; - if ( _pipe ( fdErrPipe, 512, O_TEXT | O_NOINHERIT ) == -1 ) return (HANDLE)-1; - - /* Duplicate and save original in/out/err handles */ - fdOut = _dup ( out ); - fdIn = _dup ( in ); - fdErr = _dup ( err ); - - /* Duplicate write end of new pipes to current out/err handles, - * read to in */ - if ( _dup2 ( fdOutPipe[WRITE_HANDLE], out ) != 0 ) return (HANDLE)-1; - if ( _dup2 ( fdInPipe[READ_HANDLE], in ) != 0 ) return (HANDLE)-1; - if ( _dup2 ( fdErrPipe[WRITE_HANDLE], err ) != 0 ) return (HANDLE)-1; - - - /* Close the duplicated handles to the new pipes */ - close ( fdOutPipe[WRITE_HANDLE] ); - close ( fdInPipe[READ_HANDLE] ); - close ( fdErrPipe[WRITE_HANDLE] ); + HANDLE hReturn; + + /* Duplicate and save the original stdin/out/err handles. */ + stdout_backup = _dup ( _fileno ( stdout ) ); + stdin_backup = _dup ( _fileno ( stdin ) ); + stderr_backup = _dup ( _fileno ( stderr ) ); + + /* If we are not using stdin/out/err + * then duplicate the new pipes to current stdin/out/err handles. + * + * Default std fds are used if in, out or err parameters + * are -1. */ + + hReturn = (HANDLE)-1; + hProcess = (HANDLE)-1; + if ( ( out >= 0 ) && ( out != _fileno ( stdout ) ) ) { + if ( _dup2 ( out, _fileno ( stdout ) ) != 0 ) goto error_exit; + } + if ( ( in >= 0 ) && ( in != _fileno ( stdin ) ) ) { + if ( _dup2 ( in, _fileno ( stdin ) ) != 0 ) goto error_exit_out; + } + if ( ( err >= 0 ) && ( err != _fileno ( stderr ) ) ) { + if ( _dup2 ( err, _fileno ( stderr ) ) != 0 ) goto error_exit_in; + } /* Set the wait mode. */ if ( 0 == wait ) { @@ -181,22 +185,28 @@ HANDLE spawn ( } else { wait_mode = P_WAIT; } - + /* Spawn process given on the command line*/ hProcess = (HANDLE) spawnvp ( wait_mode, program, argv ); - + /* Now that the process is launched, replace the original - * in/out/err handles */ - if ( _dup2 ( fdOut, out ) != 0 ) return (HANDLE)-1; - if ( _dup2 ( fdIn, in ) != 0 ) return (HANDLE)-1; - if ( _dup2 ( fdErr, err ) != 0 ) return (HANDLE)-1; + * in/out/err handles and close the backups. */ + + if ( _dup2 ( stderr_backup, _fileno ( stderr ) ) != 0 ) goto error_exit; + error_exit_in: + if ( _dup2 ( stdin_backup, _fileno ( stdin ) ) != 0 ) goto error_exit; + error_exit_out: + if ( _dup2 ( stdout_backup, _fileno ( stdout ) ) != 0 ) goto error_exit; + + hReturn = hProcess; + + error_exit: + close ( stdout_backup ); + close ( stdin_backup ); + close ( stderr_backup ); - /* Close duplicates */ - close(fdOut); - close(fdIn); - close(fdErr); + return hReturn; - return ( hProcess ); }