mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 20:27:34 +00:00
LibCore: Add syscall wrapper for ptrace()
This commit is contained in:
parent
e815bf5d1f
commit
2bd1a62ce1
2 changed files with 8 additions and 1 deletions
|
@ -29,6 +29,7 @@ ErrorOr<int> recvfd(int sockfd, int options);
|
|||
ErrorOr<void> ptrace_peekbuf(pid_t tid, void const* tracee_addr, Bytes destination_buf);
|
||||
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);
|
||||
#endif
|
||||
|
||||
ErrorOr<void> sigaction(int signal, struct sigaction const* action, struct sigaction* old_action);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue