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

Kernel: Increase max frame count to 64

Even just profiling Piano hits the previous limit.
This commit is contained in:
Gunnar Beutner 2021-04-25 13:41:21 +02:00 committed by Andreas Kling
parent 64639de4d2
commit ff8c664931

View file

@ -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];
};