diff options
author | Andreas Kling <kling@serenityos.org> | 2020-07-27 18:42:10 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-07-27 19:10:18 +0200 |
commit | b5f54d4153dba430f92c8f4e6fe729b31793964a (patch) | |
tree | 6db6e01ce412d182caf22f02799dc824153659d8 /Kernel/API/Syscall.h | |
parent | 0b287c18b939a89bd5c6884a71a832b091cbe74b (diff) | |
download | serenity-b5f54d4153dba430f92c8f4e6fe729b31793964a.zip |
Kernel+LibC: Add sys$set_process_name() for changing the process name
Diffstat (limited to 'Kernel/API/Syscall.h')
-rw-r--r-- | Kernel/API/Syscall.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Kernel/API/Syscall.h b/Kernel/API/Syscall.h index 8412971bf6..91cd72b960 100644 --- a/Kernel/API/Syscall.h +++ b/Kernel/API/Syscall.h @@ -192,7 +192,8 @@ namespace Kernel { __ENUMERATE_SYSCALL(minherit) \ __ENUMERATE_SYSCALL(sendfd) \ __ENUMERATE_SYSCALL(recvfd) \ - __ENUMERATE_SYSCALL(sysconf) + __ENUMERATE_SYSCALL(sysconf) \ + __ENUMERATE_SYSCALL(set_process_name) namespace Syscall { |