gpt4 book ai didi

c - fork 进程总是返回 > 0 我不知道为什么?

转载 作者:行者123 更新时间:2023-12-04 08:09:11 26 4
gpt4 key购买 nike

你好,我正在用 C 创建一个简单的 shell,目前我遇到了 fork 的问题,因为它似乎总是返回一个 > 0 的值,即使我输入一些非 linux 命令,比如“ehshhduh”,它仍然会打印出“智利进程完成” “而不是返回错误消息,谁能向我解释我做错了什么,谢谢?

#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>


char str_tokens[50];

char * get_input() {
pid_t pid;
char *tokens[30][50];
char input[512];
char *charp;
char *burner[20];

int i = 0;

while(true) {
printf(">");
if(fgets(input, 512, stdin) == 0 || strncmp(input, "exit", 4) == 0) { /* reads in input from user no more than 512 chars including null terminator, program terminates if "exit" or CTRL-D is detected*/
printf("exitting program");
exit(0);
}

const char delimiters[9] = {'&', ';', '\n', '|', ' ', '\t', '>', '<',};
charp = strtok(input, delimiters); /* splits the string on delimiters */
while (charp != NULL) {

strcpy(str_tokens, charp);
charp = strtok(NULL, delimiters); // sets the char pointer to null
//after each split of the string
//so the loop eventually terminates */
}
char *args[] = {str_tokens, 0};

pid = fork(); // fork a child process
if (pid == -1) { /* error occured */
fprintf(stderr, "Error occured with Fork");
return 1;
}
else if (pid > 0) { /* parent process */
/* parent will wait for the child process to complete */
wait(NULL);
printf("Child process completed") ;
}
else if(pid == 0){ // (pid == 0) /* this is the child process */
execvp(args[0], args); /* first param the file path, seconf is null terminated array of char pointers*/
printf("this is the child process");
_exit(EXIT_FAILURE); /* in the case our exec never returns exit */
}


}

return str_tokens;
}


void run_external(char* commands[50]) {
commands = get_input();
}

int main () {
run_external(get_input());
return(0);

}

最佳答案

调用 fork在您调用之前发生execvp在新节目上。
首先您创建一个新进程,然后当您成功完成该操作后,您尝试在该进程中启动一个新程序。如果程序名称无效,则 execvp返回和你 _exit子进程。
另外,您应该调用 perrorforkexecvp失败。这将打印一条描述原因的错误消息。

关于c - fork 进程总是返回 > 0 我不知道为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66069411/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com