-1

我使用 execvp 编译有错误的程序。但是随后我的终端屏幕上会弹出错误消息,这不应该发生,因为如果 execvp 失败,它只会让孩子以退出状态返回。我不明白为什么我的终端实际上​​会显示错误消息?

我的命令数组:{gcc,studentcode.c,ourtest3.c,-o,ourtest3.x,NULL} 在 ourtest3.c 中,我故意犯了几个错误。我的调用函数是这样的:

commands = {"gcc", "studentcode.c", "ourtest3.c", "-o", "ourtest3.x", NULL};
int compile_program(Char** commands) {
  pid_t pid;
  int status;

  pid = safe_fork();
    if (pid == 0) { /*Child*/
      if (execvp(commands[0], commands) < 0) {
    exit(0);
      }
    } else { /*Parent*/
      if (wait(&status) == -1) {
    return 0;
      }
      if (WIFEXITED(status)) {
    if (WEXITSTATUS(status) != 0) {
      return 1;
    }
      } else {
    return 0;
      }
    }
  return 1;
}

ourtest3.c 是这样的:

#include <stdio.h>
#include <assert.h>
#include "studentcode.h"

int main(void) {
  assert(product(2, 16) == 32

  printf("The student code in public07.studentcode.c works on its ");
  printf("third test!\n");

  return 0;
}

我的程序应该以返回值 0 正常结束,但是在我的终端窗口上,它显示

ourtest3.c: In function 'main':
ourtest3.c:19:0: error: unterminated argument list invoking macro "assert"
ourtest3.c:13:3: error: 'assert' undeclared (first use in this function)
ourtest3.c:13:3: note: each undeclared identifier is reported only once for each function it appears in
ourtest3.c:13:3: error: expected ';' at end of input
ourtest3.c:13:3: error: expected declaration or statement at end of input
4

1 回答 1

1

如果你想改变一个进程的标准输入、标准输出和标准错误,你需要这样做。否则,它只是从其父级继承它们。Afterfork和 before execvp,您可能希望将其添加到文件描述符 0 和 1 上open /dev/nulldup

这是一些没有错误检查的丑陋代码:

if (pid == 0) { /*Child*/

  /* Redirect stdin and stderr to /dev/null */
  int fd = open ("/dev/null", O_RDONLY);
  dup2(STDIN_FILENO, fd);
  dup2(STDERR_FILENO, fd);
  close(fd);

  if (execvp(commands[0], commands) < 0) {
_exit(0);
  }

如果您希望父级访问子级的输出,您还可以将它们重定向到文件或管道。

注意对 的调用_exit。不要养成给exit失败的孩子打电话的习惯。过去,这导致了具有严重安全隐患的错误。想象一下,如果您的进程在运行时有一些事情要做exit(例如将缓冲区刷新到终端或网络连接)。通过呼唤exit孩子,你做了两次。你可能认为你知道你没有这样的东西,但你不可能(通常)知道这一点,因为你不知道你的库可能在内部做什么。

于 2018-11-25T22:06:54.640 回答