Mercurial > hg > CbC > CbC_xv6
view src/usr/zombie.c @ 48:58ec26c64601
fix_makefile.inc use *.cbc files
author | anatofuz |
---|---|
date | Wed, 13 Mar 2019 11:29:46 +0900 |
parents | 83c23a36980d |
children |
line wrap: on
line source
// Create a zombie process that // must be reparented at exit. #include "types.h" #include "stat.h" #include "user.h" int main(void) { if(fork() > 0) sleep(5); // Let child exit before parent. exit(); }