mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:27:45 +00:00
Kernel: Increase max frame count to 64
Even just profiling Piano hits the previous limit.
This commit is contained in:
parent
64639de4d2
commit
ff8c664931
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ struct [[gnu::packed]] PerformanceEvent {
|
|||
MallocPerformanceEvent malloc;
|
||||
FreePerformanceEvent free;
|
||||
} data;
|
||||
static constexpr size_t max_stack_frame_count = 32;
|
||||
static constexpr size_t max_stack_frame_count = 64;
|
||||
FlatPtr stack[max_stack_frame_count];
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue