mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 18:55:08 +00:00
Kernel: Make PerformanceEventBuffer creation API OOM safe
This commit is contained in:
parent
8fc6168f21
commit
ab63449ab7
1 changed files with 1 additions and 1 deletions
|
@ -257,7 +257,7 @@ OwnPtr<PerformanceEventBuffer> PerformanceEventBuffer::try_create_with_size(size
|
|||
auto buffer = KBuffer::try_create_with_size(buffer_size, Region::Access::Read | Region::Access::Write, "Performance events", AllocationStrategy::AllocateNow);
|
||||
if (!buffer)
|
||||
return {};
|
||||
return adopt_own(*new PerformanceEventBuffer(buffer.release_nonnull()));
|
||||
return adopt_own_if_nonnull(new PerformanceEventBuffer(buffer.release_nonnull()));
|
||||
}
|
||||
|
||||
void PerformanceEventBuffer::add_process(const Process& process, ProcessEventType event_type)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue