Update kernel code

This commit is contained in:
Alex
2023-08-22 06:21:17 +03:00
parent ef3b761d4f
commit 8898791257
49 changed files with 3389 additions and 2313 deletions

View File

@ -21,15 +21,15 @@
#include <memory.hpp>
#include <convert.h>
extern bool EnableExternalMemoryTracer;
extern bool DebuggerIsAttached;
extern Memory::MemoryAllocatorType AllocatorType;
__constructor void TestMemoryOperations()
{
if (EnableExternalMemoryTracer || DebuggerIsAttached)
if (DebuggerIsAttached)
{
debug("The test is disabled when the external memory tracer or a debugger is enabled.");
debug("The test is disabled when the debugger is enabled.");
return;
}