aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2009-04-09 13:55:35 +0000
committerAlan Modra <amodra@gmail.com>2009-04-09 13:55:35 +0000
commitfc15a27240dc42cdddb628cdfe28359ef13f0152 (patch)
tree8ae6c08c9d87b56f566a40b8b8e4cd387975acf1 /ld
parent8487be8ba80b9de04968c89e2108f6248e6d86f8 (diff)
downloadgdb-fc15a27240dc42cdddb628cdfe28359ef13f0152.zip
gdb-fc15a27240dc42cdddb628cdfe28359ef13f0152.tar.gz
gdb-fc15a27240dc42cdddb628cdfe28359ef13f0152.tar.bz2
* emultempl/spuelf.em (embedded_spu_file): Use pex_one in place
of fork/execvp.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog5
-rw-r--r--ld/emultempl/spuelf.em39
2 files changed, 20 insertions, 24 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 7f97b49..f8f4940 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,8 @@
+2009-04-09 Thilo Fischer <thilo.fischer@uni-muenster.de>
+
+ * emultempl/spuelf.em (embedded_spu_file): Use pex_one in place
+ of fork/execvp.
+
2009-04-08 H.J. Lu <hongjiu.lu@intel.com>
* lexsup.c (option_values): Add OPTION_WARN_ALTERNATE_EM.
diff --git a/ld/emultempl/spuelf.em b/ld/emultempl/spuelf.em
index 06c22b8..5bca096 100644
--- a/ld/emultempl/spuelf.em
+++ b/ld/emultempl/spuelf.em
@@ -435,9 +435,9 @@ EOF
if grep -q 'ld_elf.*ppc.*_emulation' ldemul-list.h; then
fragment <<EOF
+#include <errno.h>
#include "filenames.h"
-#include <fcntl.h>
-#include <sys/wait.h>
+#include "libiberty.h"
static const char *
base_name (const char *path)
@@ -470,11 +470,11 @@ bfd_boolean
embedded_spu_file (lang_input_statement_type *entry, const char *flags)
{
const char *cmd[6];
+ const char *pex_return;
const char *sym;
char *handle, *p;
char *oname;
int fd;
- pid_t pid;
int status;
union lang_statement_union **old_stat_tail;
union lang_statement_union **old_file_tail;
@@ -517,8 +517,6 @@ embedded_spu_file (lang_input_statement_type *entry, const char *flags)
}
}
- /* Use fork() and exec() rather than system() so that we don't
- need to worry about quoting args. */
cmd[0] = EMBEDSPU;
cmd[1] = flags;
cmd[2] = handle;
@@ -532,30 +530,23 @@ embedded_spu_file (lang_input_statement_type *entry, const char *flags)
fflush (stdout);
}
- pid = fork ();
- if (pid == -1)
- return FALSE;
- if (pid == 0)
- {
- execvp (cmd[0], (char *const *) cmd);
+ pex_return = pex_one (PEX_SEARCH | PEX_LAST, cmd[0], (char *const *) cmd,
+ cmd[0], NULL, NULL, &status, &errno);
+ if (NULL != pex_return) {
if (strcmp ("embedspu", EMBEDSPU) != 0)
{
cmd[0] = "embedspu";
- execvp (cmd[0], (char *const *) cmd);
+ pex_return = pex_one (PEX_SEARCH | PEX_LAST, cmd[0], (char *const *) cmd,
+ cmd[0], NULL, NULL, &status, &errno);
}
- perror (cmd[0]);
- _exit (127);
- }
-#ifdef HAVE_WAITPID
-#define WAITFOR(PID, STAT) waitpid (PID, STAT, 0)
-#else
-#define WAITFOR(PID, STAT) wait (STAT)
-#endif
- if (WAITFOR (pid, &status) != pid
- || !WIFEXITED (status)
- || WEXITSTATUS (status) != 0)
+ if (NULL != pex_return) {
+ perror (pex_return);
+ _exit (127);
+ }
+ }
+ if (status)
return FALSE;
-#undef WAITFOR
+
old_stat_tail = stat_ptr->tail;
old_file_tail = input_file_chain.tail;