Add Extra Development Memory access and log on start

This commit is contained in:
Wojtek Figat
2025-03-05 13:43:15 +01:00
parent 06729f6b62
commit 196ada5710
3 changed files with 8 additions and 1 deletions

View File

@@ -35,6 +35,11 @@ API_STRUCT(NoDefault) struct MemoryStats
/// Amount of memory used initially by the program data (executable code, exclusive shared libraries and global static data sections).
/// </summary>
API_FIELD() uint64 ProgramSizeMemory = 0;
/// <summary>
/// Amount of extra memory assigned by the platform for development. Only used on platforms with fixed memory and no paging.
/// </summary>
API_FIELD() uint64 ExtraDevelopmentMemory = 0;
};
/// <summary>