aboutsummaryrefslogtreecommitdiff
path: root/miscutils/time.c
diff options
context:
space:
mode:
Diffstat (limited to 'miscutils/time.c')
-rw-r--r--miscutils/time.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/miscutils/time.c b/miscutils/time.c
index f5d1e15fb..5cfbcef8e 100644
--- a/miscutils/time.c
+++ b/miscutils/time.c
@@ -367,20 +367,17 @@ static void summarize(const char *fmt, char **command, resource_t *resp)
367 Put the statistics in *RESP. */ 367 Put the statistics in *RESP. */
368static void run_command(char *const *cmd, resource_t *resp) 368static void run_command(char *const *cmd, resource_t *resp)
369{ 369{
370 pid_t pid; /* Pid of child. */ 370 pid_t pid;
371 void (*interrupt_signal)(int); 371 void (*interrupt_signal)(int);
372 void (*quit_signal)(int); 372 void (*quit_signal)(int);
373 373
374 resp->elapsed_ms = monotonic_ms(); 374 resp->elapsed_ms = monotonic_ms();
375 pid = vfork(); /* Run CMD as child process. */ 375 pid = vfork();
376 if (pid < 0) 376 if (pid < 0)
377 bb_perror_msg_and_die("fork"); 377 bb_perror_msg_and_die("vfork");
378 if (pid == 0) { /* If child. */ 378 if (pid == 0) {
379 /* Don't cast execvp arguments; that causes errors on some systems, 379 /* Child */
380 versus merely warnings if the cast is left off. */ 380 BB_EXECVP_or_die((char**)cmd);
381 BB_EXECVP(cmd[0], cmd);
382 xfunc_error_retval = (errno == ENOENT ? 127 : 126);
383 bb_perror_msg_and_die("can't execute '%s'", cmd[0]);
384 } 381 }
385 382
386 /* Have signals kill the child but not self (if possible). */ 383 /* Have signals kill the child but not self (if possible). */