xv6-cs450/init.c

39 lines
678 B
C
Raw Normal View History

#include "types.h"
2006-08-15 17:53:46 +02:00
#include "stat.h"
#include "user.h"
#include "fs.h"
#include "fcntl.h"
2006-09-06 19:50:20 +02:00
// init: The initial user-level program
char *sh_args[] = { "sh", 0 };
int
main(void)
{
2007-08-08 10:39:23 +02:00
int pid, wpid;
2006-09-06 19:27:19 +02:00
2006-08-29 21:06:37 +02:00
if(open("console", O_RDWR) < 0){
mknod("console", T_DEV, 1, 1);
2006-08-29 21:06:37 +02:00
open("console", O_RDWR);
}
2006-09-08 16:36:44 +02:00
dup(0); // stdout
dup(0); // stderr
2006-09-06 20:47:51 +02:00
for(;;){
printf(1, "init: starting sh\n");
pid = fork();
2006-08-29 21:06:37 +02:00
if(pid < 0){
printf(1, "init: fork failed\n");
2006-08-29 21:06:37 +02:00
exit();
}
if(pid == 0){
exec("sh", sh_args);
printf(1, "init: exec sh failed\n");
exit();
2006-08-29 21:06:37 +02:00
}
2007-08-08 10:39:23 +02:00
while((wpid=wait()) >= 0 && wpid != pid)
printf(1, "zombie!\n");
}
}