aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMarvin Borner2021-03-28 12:00:16 +0200
committerMarvin Borner2021-03-28 12:00:16 +0200
commitba2c07447ba1278d8ad38ca58a8ae94c82d2d008 (patch)
tree36984c091376e51b37bf119c27e22ecf6df46106 /apps
parent71e7dbd806326c21877eefc27f17eb9a06f63cbc (diff)
Added ring0 privileges to kernel processes
This enables a more efficient idling process using the hlt instruction. The context-switching is a bit slower now, too. I have to look into that.
Diffstat (limited to 'apps')
-rw-r--r--apps/idle.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/idle.c b/apps/idle.c
index 15ffc68..95731e2 100644
--- a/apps/idle.c
+++ b/apps/idle.c
@@ -6,7 +6,10 @@ int main(int argc, char **argv)
{
UNUSED(argc);
UNUSED(argv);
+
+ // Just chillin'
while (1)
- ;
+ __asm__ volatile("hlt");
+
return 0;
}