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

LibCore: Add syscall wrapper for profiling_disable()

This commit is contained in:
rvictorr 2022-02-13 00:08:16 +02:00 committed by Andreas Kling
parent c6a743f22c
commit 014c0d68c0
2 changed files with 7 additions and 0 deletions

View file

@ -44,6 +44,7 @@ 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);
ErrorOr<void> profiling_disable(pid_t);
#endif
#ifndef AK_OS_BSD_GENERIC