《操作系统》的实验代码。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

32 lines
678 B

#include <stdio.h>
#include <ulib.h>
int
main(void) {
int pid, ret, i ,j;
cprintf("I am the parent. Forking the child...\n");
pid = fork();
if (pid== 0) {
cprintf("I am the child. spinning ...\n");
while (1);
}else if (pid<0) {
panic("fork child error\n");
}
cprintf("I am the parent. Running the child...\n");
yield();
yield();
yield();
cprintf("I am the parent. Killing the child...\n");
assert((ret = kill(pid)) == 0);
cprintf("kill returns %d\n", ret);
assert((ret = waitpid(pid, NULL)) == 0);
cprintf("wait returns %d\n", ret);
cprintf("spin may pass.\n");
return 0;
}