fix waitpid
This commit is contained in:
parent
d9f5d29dda
commit
3cc6fb0d5a
1 changed files with 11 additions and 5 deletions
16
commands.c
16
commands.c
|
@ -157,16 +157,22 @@ int execute(char **args) {
|
||||||
if (args[0] == NULL) { // An empty command was entered.
|
if (args[0] == NULL) { // An empty command was entered.
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// prioritize builtin commands
|
||||||
for (int i = 0; i < num_builtins(); i++) {
|
for (int i = 0; i < num_builtins(); i++) {
|
||||||
if (strcmp(args[0], builtin_cmds[i]) == 0) {
|
if (strcmp(args[0], builtin_cmds[i]) == 0) {
|
||||||
return (*builtin_func[i])(args);
|
return (*builtin_func[i])(args);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/*
|
||||||
|
while (*args) {
|
||||||
|
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
pid_t pid;
|
||||||
|
|
||||||
pid_t pid = fork();
|
|
||||||
int status;
|
int status;
|
||||||
if (pid == 0) {
|
if ((pid = fork()) == 0) {
|
||||||
// Child process
|
// Child process
|
||||||
if (execvp(args[0], args) == -1) {
|
if (execvp(args[0], args) == -1) {
|
||||||
if (errno == ENOENT) {
|
if (errno == ENOENT) {
|
||||||
|
@ -178,9 +184,9 @@ int execute(char **args) {
|
||||||
perror("fork failed");
|
perror("fork failed");
|
||||||
} else {
|
} else {
|
||||||
// Parent process
|
// Parent process
|
||||||
while (!WIFEXITED(status) && !WIFSIGNALED(status)) {
|
do {
|
||||||
waitpid(pid, &status, WUNTRACED); // wait child to be exited to return to prompt
|
waitpid(pid, &status, WUNTRACED); // wait child to be exited to return to prompt
|
||||||
}
|
} while (!WIFEXITED(status) && !WIFSIGNALED(status));
|
||||||
}
|
}
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
|
|
Loading…
Reference in a new issue