diff options
Diffstat (limited to 'src/userspace/programs/root.c')
-rw-r--r-- | src/userspace/programs/root.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/userspace/programs/root.c b/src/userspace/programs/root.c deleted file mode 100644 index 86b8bf7..0000000 --- a/src/userspace/programs/root.c +++ /dev/null @@ -1,15 +0,0 @@ -#include <stdio.h> -#include <syscall.h> -#include <unistd.h> - -// 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 |