1 // Create a zombie process that
2 // must be reparented at exit.
3
4 #include "types.h"
5 #include "stat.h"
6 #include "user.h"
7
8 int
9 main(void)
/* ![[previous]](../icons/n_left.png)
![[next]](../icons/n_right.png)
![[first]](../icons/n_first.png)
![[last]](../icons/n_last.png)
![[top]](../icons/top.png)
![[bottom]](../icons/bottom.png)
![[index]](../icons/index.png)
*/
10 {
11 if(fork() > 0)
12 sleep(5); // Let child exit before parent.
13 exit();
14 }