aboutsummaryrefslogtreecommitdiff
path: root/libiberty/pex-djgpp.c
diff options
context:
space:
mode:
authorKai Tietz <kai.tietz@onevision.com>2009-04-13 10:48:27 +0000
committerKai Tietz <kai.tietz@onevision.com>2009-04-13 10:48:27 +0000
commit587c6b96efe8a88472fb2f24f09d0e93d60e2242 (patch)
tree5b70d6860288e3cda10004827dd4dba5d63846eb /libiberty/pex-djgpp.c
parent2e80c3068080ea7038c36c9c7051c9e03ce1f740 (diff)
downloadfsf-binutils-gdb-587c6b96efe8a88472fb2f24f09d0e93d60e2242.zip
fsf-binutils-gdb-587c6b96efe8a88472fb2f24f09d0e93d60e2242.tar.gz
fsf-binutils-gdb-587c6b96efe8a88472fb2f24f09d0e93d60e2242.tar.bz2
Merged from gcc head revision 146001.
2009-04-13 Ozkan Sezer <sezeroz@gmail.com> PR target/39397 * pex-common.h (struct pex_obj): Store pid values as pid_t, not as long (members *children and (*wait)) * pex-common.c (pex_run_in_environment): Likewise. * pex-win32.c (pex_win32_wait): Return pid_t and properly check returned pid value. * pex-djgpp.c (pex_djgpp_wait): Return pid_t. * pex-msdos.c (pex_msdos_wait): Likewise.
Diffstat (limited to 'libiberty/pex-djgpp.c')
-rw-r--r--libiberty/pex-djgpp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libiberty/pex-djgpp.c b/libiberty/pex-djgpp.c
index bd27938..0721139 100644
--- a/libiberty/pex-djgpp.c
+++ b/libiberty/pex-djgpp.c
@@ -49,7 +49,7 @@ static pid_t pex_djgpp_exec_child (struct pex_obj *, int, const char *,
int, int, int, int,
const char **, int *);
static int pex_djgpp_close (struct pex_obj *, int);
-static int pex_djgpp_wait (struct pex_obj *, pid_t, int *, struct pex_time *,
+static pid_t pex_djgpp_wait (struct pex_obj *, pid_t, int *, struct pex_time *,
int, const char **, int *);
/* The list of functions we pass to the common routines. */
@@ -276,7 +276,7 @@ pex_djgpp_exec_child (struct pex_obj *obj, int flags, const char *executable,
has already completed, and we just need to return the exit
status. */
-static int
+static pid_t
pex_djgpp_wait (struct pex_obj *obj, pid_t pid, int *status,
struct pex_time *time, int done ATTRIBUTE_UNUSED,
const char **errmsg ATTRIBUTE_UNUSED,