From 4286b14839c0c4ec016d816e426660f6685ae349 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 7 May 2020 18:10:22 +0200 Subject: Fixed many bugs with wait() and fork() This also adds many race conditions which really need to be fixed.. --- src/userspace/programs/root.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/userspace/programs/root.c (limited to 'src/userspace/programs/root.c') diff --git a/src/userspace/programs/root.c b/src/userspace/programs/root.c new file mode 100644 index 0000000..d02f72c --- /dev/null +++ b/src/userspace/programs/root.c @@ -0,0 +1,15 @@ +#include +#include +#include + +// This process only exists because it can't crash +void main() +{ + if (get_pid() != 1) { + printf("Wrong PID!\n"); + exit(1); + } + + exec("/bin/init"); + printf("The init process crashed!"); +} \ No newline at end of file -- cgit v1.2.3