《操作系统》的实验代码。
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

29 строки
602 B

12 лет назад
  1. #include <stdio.h>
  2. #include <ulib.h>
  3. int
  4. main(void) {
  5. int pid, ret;
  6. cprintf("I am the parent. Forking the child...\n");
  7. if ((pid = fork()) == 0) {
  8. cprintf("I am the child. spinning ...\n");
  9. while (1);
  10. }
  11. cprintf("I am the parent. Running the child...\n");
  12. yield();
  13. yield();
  14. yield();
  15. cprintf("I am the parent. Killing the child...\n");
  16. assert((ret = kill(pid)) == 0);
  17. cprintf("kill returns %d\n", ret);
  18. assert((ret = waitpid(pid, NULL)) == 0);
  19. cprintf("wait returns %d\n", ret);
  20. cprintf("spin may pass.\n");
  21. return 0;
  22. }