diff options
author | Robin Burchell <robin+git@viroteck.net> | 2019-06-16 11:49:39 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-16 12:25:30 +0200 |
commit | 952382b413484f3d81e7387e8ec0916bd5f48dc1 (patch) | |
tree | 67e405b94cc23ec366c7839d9ac50c9e10ee3739 /Kernel/Syscall.h | |
parent | 9e0f7acfe5d7529cf65d86cfd229780aca8c3694 (diff) | |
download | serenity-952382b413484f3d81e7387e8ec0916bd5f48dc1.zip |
Kernel/Userland: Add a halt syscall, and a shutdown binary to invoke it
Diffstat (limited to 'Kernel/Syscall.h')
-rw-r--r-- | Kernel/Syscall.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Kernel/Syscall.h b/Kernel/Syscall.h index fd2f7fceef..033148a76f 100644 --- a/Kernel/Syscall.h +++ b/Kernel/Syscall.h @@ -112,7 +112,8 @@ struct timeval; __ENUMERATE_SYSCALL(getpeername) \ __ENUMERATE_SYSCALL(sched_setparam) \ __ENUMERATE_SYSCALL(sched_getparam) \ - __ENUMERATE_SYSCALL(fchown) + __ENUMERATE_SYSCALL(fchown) \ + __ENUMERATE_SYSCALL(halt) namespace Syscall { |