aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMarvin Borner2021-04-03 14:04:23 +0200
committerMarvin Borner2021-04-03 14:04:23 +0200
commit394ee169ea6eb4dd5c8fa778d1c2769e26e52f01 (patch)
tree70440fb0d9eeb09e1aeec7eba6f2319d34b4918c /apps
parentce98400f8a9ebd4e62e76b9e292b7598d0d66cc0 (diff)
Enabled SMAP/SMEP protections
Diffstat (limited to 'apps')
-rw-r--r--apps/idle.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/idle.c b/apps/idle.c
index 95731e2..43186ff 100644
--- a/apps/idle.c
+++ b/apps/idle.c
@@ -9,7 +9,8 @@ int main(int argc, char **argv)
// Just chillin'
while (1)
- __asm__ volatile("hlt");
+ ;
+ /* __asm__ volatile("hlt"); */
return 0;
}