1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 10:18:15 +09:00

Kernel+LibC: Add sys$set_process_name() for changing the process name

This commit is contained in:
Andreas Kling 2020-07-27 18:42:10 +02:00
parent 0b287c18b9
commit b5f54d4153
Notes: sideshowbarker 2024-07-19 04:33:36 +09:00
5 changed files with 22 additions and 1 deletions

View file

@ -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 {