diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-08-27 23:50:30 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-08-27 23:50:30 +0000 |
commit | b470eeb2d8fc5d32c666974f7328313820597dd4 (patch) | |
tree | 605a7786db7fb3a02245d989ed8b13db7d8bdb92 /libiberty/pex-win32.c | |
parent | e6c28517069c27ab2a3600b8b23c5816fd35ee30 (diff) | |
download | gcc-b470eeb2d8fc5d32c666974f7328313820597dd4.tar.gz |
PR driver/27622
* pex-common.h (struct pex_funcs): Add toclose parameter to
exec_child field.
* pex-common.c (pex_run_in_environment): Pass toclose to
exec_child.
* pex-djgpp.c (pex_djgpp_exec_child): Add toclose parameter.
* pex-unix.c (pex_unix_exec_child): Likewise.
* pex-msdos.c (pex_msdos_exec_child): Likewise.
* pex-win32.c (pex_win32_exec_child): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@116494 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty/pex-win32.c')
-rw-r--r-- | libiberty/pex-win32.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libiberty/pex-win32.c b/libiberty/pex-win32.c index 45725457b6a..aef386d3cc2 100644 --- a/libiberty/pex-win32.c +++ b/libiberty/pex-win32.c @@ -81,7 +81,7 @@ static int pex_win32_open_read (struct pex_obj *, const char *, int); static int pex_win32_open_write (struct pex_obj *, const char *, int); static long pex_win32_exec_child (struct pex_obj *, int, const char *, char * const *, char * const *, - int, int, int, + int, int, int, int, const char **, int *); static int pex_win32_close (struct pex_obj *, int); static int pex_win32_wait (struct pex_obj *, long, int *, @@ -699,7 +699,9 @@ static long pex_win32_exec_child (struct pex_obj *obj ATTRIBUTE_UNUSED, int flags, const char *executable, char * const * argv, char* const* env, - int in, int out, int errdes, const char **errmsg, + int in, int out, int errdes, + int toclose ATTRIBUTE_UNUSED, + const char **errmsg, int *err) { long pid; |