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

LibCore: Add syscall wrapper for profiling_free_buffer()

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

View file

@ -167,6 +167,12 @@ ErrorOr<void> profiling_disable(pid_t pid)
int rc = ::profiling_disable(pid);
HANDLE_SYSCALL_RETURN_VALUE("profiling_disable", rc, {});
}
ErrorOr<void> profiling_free_buffer(pid_t pid)
{
int rc = ::profiling_free_buffer(pid);
HANDLE_SYSCALL_RETURN_VALUE("profiling_free_buffer", rc, {});
}
#endif
#ifndef AK_OS_BSD_GENERIC