AuroraRuntime/Include/Aurora/Memory/Cache.hpp
Reece 0fb514f856 New memory APIs
[+] AuMemory::Cache
[+] AuMemory::SwapLock
[+] AuMemory::Transition

AuROXTL
[+] AuPageRoundUp
[+] AuPageRound
2022-03-21 05:20:19 +00:00

14 lines
377 B
C++

/***
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: Cache.hpp
Date: 2022-3-21
Author: Reece
***/
#pragma once
namespace Aurora::Memory::Cache
{
AUKN_SYM void OptimizeAddressRangeOnCore(const AuList<AuPair<AuUInt, AuUInt>> &addressRange);
AUKN_SYM void ClearInstructionCache(const AuPair<AuUInt, AuUInt> &addressRange);
}