xv6-riscv-kernel/user/init.c

55 lines
1.1 KiB
C
Raw Normal View History

2007-08-28 21:04:36 +02:00
// init: The initial user-level program
#include "kernel/types.h"
#include "kernel/stat.h"
#include "kernel/spinlock.h"
#include "kernel/sleeplock.h"
#include "kernel/fs.h"
#include "kernel/file.h"
#include "user/user.h"
#include "kernel/fcntl.h"
char *argv[] = { "sh", 0 };
int
main(void)
{
2007-08-08 10:39:23 +02:00
int pid, wpid;
2006-09-06 19:27:19 +02:00
2024-06-15 16:55:06 +02:00
if(open("console", O_RDWR) < 0) {
mknod("console", CONSOLE, 0);
2006-08-29 21:06:37 +02:00
open("console", O_RDWR);
}
2024-06-15 16:55:06 +02:00
dup(0); // stdout
dup(0); // stderr
2024-06-15 16:55:06 +02:00
for(;;) {
2019-08-27 19:13:03 +02:00
printf("init: starting sh\n");
pid = fork();
2024-06-15 16:55:06 +02:00
if(pid < 0) {
2019-08-27 19:13:03 +02:00
printf("init: fork failed\n");
2019-09-11 16:04:40 +02:00
exit(1);
2006-08-29 21:06:37 +02:00
}
2024-06-15 16:55:06 +02:00
if(pid == 0) {
exec("sh", argv);
2019-08-27 19:13:03 +02:00
printf("init: exec sh failed\n");
2019-09-11 16:04:40 +02:00
exit(1);
2006-08-29 21:06:37 +02:00
}
2020-08-15 11:46:32 +02:00
2024-06-15 16:55:06 +02:00
for(;;) {
2020-08-15 11:46:32 +02:00
// this call to wait() returns if the shell exits,
// or if a parentless process exits.
2024-06-15 16:55:06 +02:00
wpid = wait((int *)0);
if(wpid == pid) {
2020-08-15 11:46:32 +02:00
// the shell exited; restart it.
break;
2024-06-15 16:55:06 +02:00
} else if(wpid < 0) {
2020-08-15 11:46:32 +02:00
printf("init: wait returned an error\n");
exit(1);
} else {
// it was a parentless process; do nothing.
}
}
}
}