1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:17:35 +00:00

Add a simplified waitpid() so that sh can wait on spawned commands.

This commit is contained in:
Andreas Kling 2018-10-24 00:20:34 +02:00
parent 018da1be11
commit 3253a23b91
8 changed files with 42 additions and 7 deletions

View file

@ -18,7 +18,9 @@ static int runcmd(char* cmd)
int ret = spawn(buf);
if (ret == -1) {
printf("spawn failed: %s\n", cmd);
return 1;
}
waitpid(ret);
return 0;
}