mirror of
https://github.com/Ed94/gencpp.git
synced 2024-11-10 02:54:53 -08:00
39 lines
685 B
C++
39 lines
685 B
C++
#define BLOAT_IMPL
|
|
#include "Bloat.hpp"
|
|
|
|
|
|
namespace Memory
|
|
{
|
|
using namespace zpl;
|
|
|
|
Arena Global_Arena {};
|
|
|
|
void setup()
|
|
{
|
|
arena_init_from_allocator( & Global_Arena, heap(), Initial_Reserve );
|
|
|
|
if ( Global_Arena.total_size == 0 )
|
|
{
|
|
assert_crash( "Failed to reserve memory for Tests:: Global_Arena" );
|
|
}
|
|
}
|
|
|
|
void resize( uw new_size )
|
|
{
|
|
void* new_memory = resize( heap(), Global_Arena.physical_start, Global_Arena.total_size, new_size );
|
|
|
|
if ( new_memory == nullptr )
|
|
{
|
|
fatal("Failed to resize global arena!");
|
|
}
|
|
|
|
Global_Arena.physical_start = new_memory;
|
|
Global_Arena.total_size = new_size;
|
|
}
|
|
|
|
void cleanup()
|
|
{
|
|
arena_free( & Global_Arena);
|
|
}
|
|
}
|