mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:07:35 +00:00
Kernel: Fix incorrect argument for thread_exit events
This commit is contained in:
parent
1c02848e54
commit
659507696c
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ void Process::sys$exit_thread(Userspace<void*> exit_value)
|
|||
}
|
||||
|
||||
if (auto* event_buffer = current_perf_events_buffer()) {
|
||||
[[maybe_unused]] auto rc = event_buffer->append(PERF_EVENT_THREAD_EXIT, Thread::current()->tid().value(), 0, nullptr);
|
||||
[[maybe_unused]] auto rc = event_buffer->append(PERF_EVENT_THREAD_EXIT, 0, 0, nullptr);
|
||||
}
|
||||
|
||||
Thread::current()->exit(reinterpret_cast<void*>(exit_value.ptr()));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue