mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-10 09:40:53 +01:00
c1ce6aa406
Create displayFreeMemory(). Few renaming and details that doesn't change behavior.
49 lines
910 B
C
49 lines
910 B
C
#ifndef __CLOVER_STDLIB_H__
|
|
#define __CLOVER_STDLIB_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <Library/MemoryAllocationLib.h>
|
|
#include <Library/MemLogLib.h>
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#include "stddef.h" // for size_t
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void abort(void);
|
|
|
|
inline void* malloc(size_t size)
|
|
{
|
|
void* ptr = AllocatePool(size);
|
|
// MemLogf(false, 0, "malloc(%zd) %llx\n", size, uintptr_t(ptr));
|
|
return ptr;
|
|
}
|
|
|
|
inline void* reallocWithOldSize(void *ptr, size_t newsize, size_t oldsize) // not the posix realloc. For EFI we need oldsize
|
|
{
|
|
void* newptr = ReallocatePool(oldsize, newsize, ptr);
|
|
// MemLogf(false, 0, "reallocWithOldSize(%llx %zd %zd) %llx\n", uintptr_t(ptr), newsize, oldsize, uintptr_t(newptr));
|
|
return newptr;
|
|
}
|
|
|
|
inline void free(void *ptr)
|
|
{
|
|
// MemLogf(false, 0, "free(%llx)\n", uintptr_t(ptr));
|
|
FreePool(ptr);
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif
|