aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/programs/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/userspace/programs/init.c')
-rw-r--r--src/userspace/programs/init.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/userspace/programs/init.c b/src/userspace/programs/init.c
index 019e5c3..7a4900b 100644
--- a/src/userspace/programs/init.c
+++ b/src/userspace/programs/init.c
@@ -21,10 +21,10 @@ int interrupts_enabled()
void main()
{
- /* if (get_pid() != 1) { */
- /* printf("Wrong PID!\n"); */
- /* exit(1); */
- /* } */
+ if (get_pid() != 1) {
+ printf("Wrong PID!\n");
+ exit(1);
+ }
if (interrupts_enabled())
printf("INTs enabled :)\n");
@@ -38,12 +38,9 @@ void main()
// TODO: Fix occasional race conditions with cli/sti
// TODO: Fix scheduler turning off at some point
spawn("/bin/sh");
- if (interrupts_enabled())
- printf("INTs enabled :)\n");
- else
- printf("INTs disabled :(\n");
+ printf("Looping in init\n");
while (1) {
- printf("B");
+ //printf("B");
};
} \ No newline at end of file