1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:47:34 +00:00

Kernel+LibPthread: Implement pthread_detach()

This commit is contained in:
Andreas Kling 2019-12-07 14:47:00 +01:00
parent 9ddfe694f2
commit 95b086f47f
4 changed files with 29 additions and 1 deletions

View file

@ -141,7 +141,8 @@ typedef u32 socklen_t;
__ENUMERATE_SYSCALL(openat) \
__ENUMERATE_SYSCALL(join_thread) \
__ENUMERATE_SYSCALL(module_load) \
__ENUMERATE_SYSCALL(module_unload)
__ENUMERATE_SYSCALL(module_unload) \
__ENUMERATE_SYSCALL(detach_thread)
namespace Syscall {