mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-15 10:15:32 +01:00
282bc531d7
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
40 lines
678 B
C++
Executable File
40 lines
678 B
C++
Executable File
#include <Platform/Platform.h>
|
|
|
|
#if 0
|
|
#define DBG(...) DebugLog(2, __VA_ARGS__)
|
|
#else
|
|
#define DBG(...)
|
|
#endif
|
|
|
|
#if defined(_MSC_VER)
|
|
void* operator new (size_t count)
|
|
#else
|
|
void* operator new (unsigned long count)
|
|
#endif
|
|
{
|
|
void* ptr = AllocatePool(count);
|
|
if ( !ptr ) {
|
|
DebugLog(2, "AllocatePool(%d) returned NULL. Cpu halted\n", count);
|
|
CpuDeadLoop();
|
|
}
|
|
return ptr;
|
|
}
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma warning(disable : 4577)
|
|
#endif
|
|
void operator delete ( void* ptr ) noexcept
|
|
{
|
|
return FreePool(ptr);
|
|
}
|
|
#ifdef _MSC_VER
|
|
void _cdecl operator delete (void * ptr, unsigned __int64 count)
|
|
#else
|
|
void operator delete (void * ptr, UINTN count)
|
|
#endif
|
|
{
|
|
return FreePool(ptr);
|
|
}
|
|
|
|
|