因此,对于一项任务,我们需要构建一个 shell,其中包括模拟 & 命令行运算符。
我已经停止了分叉/执行,问题是使用 WNOHANG 调用 waitpid 会导致我的程序在 execv 终止后挂起。一旦我按回车,提示就会回来,程序正常工作。请注意,阻塞的 waitpid 不会发生这种情况。
这是相关的代码:
782 pid_t child = fork(); //Create child process
783
784 char** charArgs = toCharMatrix(*args);
785
786 //If creation failed, say so
787 if(child == -1) {
788 fprintf(stderr, "Error: Could not create child process.\n");
789 return -1;
790 }
791 else if(child == 0) { //else: child process code
792
793 //If the given command can be executed, attempt to exectue it
794 if(access(charArgs[0], X_OK) == 0)
795 execv(charArgs[0], charArgs);
796 else { //Else tell the user that they are an idiot
797 fprintf(stderr, "%s is not a valid path.\n", charArgs[0]);
798 return -1;
799 }
800
801 _exit(0);
802 }
803 else
804 waitpid(-1, NULL, WNOHANG);
我在最后一个 else 语句(父进程代码)中尝试了很多东西,从返回到基本上任何东西。似乎没有任何帮助。再一次,只需删除 WNOHANG 选项即可解决问题,但不符合分配规范。
我也叫 waitpid(-1, NULL, WNOHANG); 在显示提示之前的主循环中,以避免任何僵尸孩子。这个愚蠢的回车问题是唯一剩下的问题。提前致谢。