blob: 306aee64d945bc5b5f72991d3a77bbb54ff76549 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#include <common.h>
#include <gui.h>
#include <stdio.h>
#include <stdlib.h>
#include <syscall.h>
#include <unistd.h>
u32 cpu_flags()
{
u32 flags;
asm volatile("pushf\n"
"pop %0\n"
: "=rm"(flags)::"memory");
return flags;
}
int interrupts_enabled()
{
return (cpu_flags() & 0x200) == 0x200;
}
void main()
{
if (get_pid() != 1) {
printf("Wrong PID!\n");
exit(1);
}
if (interrupts_enabled())
printf("INTs enabled :)\n");
else
printf("INTs disabled :(\n");
// TODO: Fix page fault when mallocing
printf("Initializing userspace...\n");
// TODO: Find out, why processes change pid randomly
// 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");
while (1) {
//printf("B");
};
}
|