1
0
Fork 0

Added: Assertion on allocations larger then page size

Browse Source
This commit is contained in:
rhuibertsjr 2024-04-26 18:18:03 +02:00
parent 662254d4a4
commit d08c70ae84

View File

@ -49,6 +49,7 @@ arena_allocate(Arena *arena, u64 size)
{
// rhjr: TODO add support for allocations larger then a single page, in a
// single allocation call.
ASSERT(0);
}
else
{