summaryrefslogtreecommitdiff
path: root/Kernel/API/Syscall.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-07-27 18:42:10 +0200
committerAndreas Kling <kling@serenityos.org>2020-07-27 19:10:18 +0200
commitb5f54d4153dba430f92c8f4e6fe729b31793964a (patch)
tree6db6e01ce412d182caf22f02799dc824153659d8 /Kernel/API/Syscall.h
parent0b287c18b939a89bd5c6884a71a832b091cbe74b (diff)
downloadserenity-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.h3
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 {