xv6-cs450/zombie.c

13 lines
122 B
C
Raw Normal View History

2007-08-08 10:38:55 +02:00
// Create a zombie process.
#include "types.h"
#include "stat.h"
#include "user.h"
int
main(void)
{
fork();
exit();
}