我有一个似乎挂在父进程中的程序。它是一个模拟 bash 程序,它接受诸如 bash 之类的命令,然后对其进行操作。代码如下。(注意这是没有错误检查的简化代码,因此它更容易阅读。假设它全部正确嵌套在 main 函数中)
#define MAX_LINE 80
char *args[MAX_LINE/2 + 1];
while(should_run){
char *inputLine = malloc(MAX_LINE);
runConcurrently = 0; /*Resets the run in background to be line specific */
fprintf(stdout, "osh> "); /*Command prompt austhetic */
fflush(stdout);
/*User Input */
fgets(inputLine, MAX_LINE, stdin);
/*Reads into Args array */
char *token = strtok(inputLine, " \n");
int spot = 0;
while (token){
args[spot] = token;
token = strtok(NULL, " \n");
spot++;
}
args[spot] = NULL;
/* checks for & and changes flag */
if (strcmp(args[spot-1], "&") == 0){
runConcurrently = 1;
args[spot-1] = NULL;
}
/* Child-Parent Fork Process */
pid_t pid;
pid = fork(); /*Creates the fork */
if (pid == 0){
int run = execvp(args[0], args);
if (run < 0){
fprintf(stdout, "Commands Failed, check syntax!\n");
exit(1);
}
}
else if (pid > 0) {
if (!runConcurrently){
wait(NULL);
}
}
else {
fprintf(stderr, "Fork Failed \n");
return 1;
}
}
这里的问题与我使用“&”并激活同时运行标志有关。这使得父母不再需要等待,但是当我这样做时,我失去了一些功能。
预期输出:
osh> ls-a &
//Outputs a list of all in current directory
osh>
所以我希望它同时运行它们,但把终端的控制权还给我。但相反,我得到了这个。
实际结果:
osh> ls -a &
//Outputs a list of all in current directory
<---- Starts a new line without the osh>. And stays like this indefinitely
如果我在这个空白区域输入一些东西,结果是:
osh> ls -a &
//Outputs a list of all in current directory
ls -a
//Outputs a list of all in current directory
osh> osh> //I get two osh>'s this time.
这是我第一次使用拆分进程和 fork()。我在这里错过了什么吗?当我同时运行它时,我应该选择进程还是类似的东西?欢迎任何帮助,谢谢!