1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 20:58:11 +00:00

LibCore: Add syscall wrapper for profiling_enable()

This commit is contained in:
rvictorr 2022-02-13 00:07:51 +02:00 committed by Andreas Kling
parent 4dc23c9b24
commit c6a743f22c
2 changed files with 7 additions and 0 deletions

View file

@ -43,6 +43,7 @@ ErrorOr<void> mount(int source_fd, StringView target, StringView fs_type, int fl
ErrorOr<void> umount(StringView mount_point);
ErrorOr<long> ptrace(int request, pid_t tid, void* address, void* data);
ErrorOr<void> disown(pid_t pid);
ErrorOr<void> profiling_enable(pid_t, u64 event_mask);
#endif
#ifndef AK_OS_BSD_GENERIC