1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:57:35 +00:00

LibCore: Add Core::System wrapper for disown()

This commit is contained in:
Maciej 2021-12-29 16:22:22 +01:00 committed by Andreas Kling
parent 0badfd7b32
commit ccb8374434
2 changed files with 11 additions and 0 deletions

View file

@ -41,6 +41,7 @@ ErrorOr<void> ptrace_peekbuf(pid_t tid, void const* tracee_addr, Bytes destinati
ErrorOr<void> setgroups(Span<gid_t const>);
ErrorOr<void> mount(int source_fd, StringView target, StringView fs_type, int flags);
ErrorOr<long> ptrace(int request, pid_t tid, void* address, void* data);
ErrorOr<void> disown(pid_t pid);
#endif
#ifndef AK_OS_BSD_GENERIC