如何获取execv的返回值

How do I get the return value of a execv?

本文关键字:execv 返回值 获取 何获取      更新时间:2023-10-16

我对C++真的很陌生,我正在尝试从获得输出

execv("./rdesktop",NULL);

我正在用C++和RHEL6进行编程。

像FTP客户端一样,我希望从外部运行的程序中获得所有状态更新。有人能告诉我怎么做吗?

execv替换当前进程,因此在执行它之后,立即执行的将是您指定的任何可执行文件。

通常情况下,只在子进程中执行fork,然后执行execv。父进程接收新子进程的PID,可以使用该PID监视子进程的执行。

您可以通过调用waitwaitpidwait3wait4来检查子进程的退出状态。

#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
int main () {
  pid_t pid = fork();
  switch(pid) {
  case 0:
    // We are the child process
    execl("/bin/ls", "ls", NULL);
    // If we get here, something is wrong.
    perror("/bin/ls");
    exit(255);
  default:
    // We are the parent process
    {
      int status;
      if( waitpid(pid, &status, 0) < 0 ) {
        perror("wait");
        exit(254);
      }
      if(WIFEXITED(status)) {
        printf("Process %d returned %dn", pid, WEXITSTATUS(status));
        exit(WEXITSTATUS(status));
      }
      if(WIFSIGNALED(status)) {
        printf("Process %d killed: signal %d%sn",
          pid, WTERMSIG(status),
          WCOREDUMP(status) ? " - core dumped" : "");
        exit(1);
      }
    }
  case -1:
    // fork failed
    perror("fork");
    exit(1);
  }
}