Use the WUMS_APPLICATION_STARTS hook instead of the main() function

This commit is contained in:
Maschell 2020-06-03 18:54:42 +02:00
parent d0898430fc
commit 7a2804ac7e

View File

@ -22,12 +22,11 @@ WUMS_INITIALIZE() {
DEBUG_FUNCTION_LINE("total free space %d KiB", MemoryMapping_GetFreeSpace() / 1024); DEBUG_FUNCTION_LINE("total free space %d KiB", MemoryMapping_GetFreeSpace() / 1024);
} }
int main(int argc, char **argv) { WUMS_APPLICATION_STARTS() {
WHBLogUdpInit(); WHBLogUdpInit();
MemoryMapping::DestroyHeaps(); //MemoryMapping_DestroyHeaps();
MemoryMapping::CreateHeaps(); //MemoryMapping_CreateHeaps();
DEBUG_FUNCTION_LINE("total free space %d KiB", MemoryMapping::GetFreeSpace() / 1024); DEBUG_FUNCTION_LINE("total free space %d KiB", MemoryMapping_GetFreeSpace() / 1024);
return 0;
} }
void MemoryMappingFree(void *ptr) { void MemoryMappingFree(void *ptr) {