17 lines
352 B
C++
17 lines
352 B
C++
|
/***
|
||
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
||
|
|
||
|
File: AuHeap.cpp
|
||
|
Date: 2021-6-12
|
||
|
Author: Reece
|
||
|
***/
|
||
|
#include <Source/RuntimeInternal.hpp>
|
||
|
#include "AuHeap.hpp"
|
||
|
|
||
|
namespace Aurora::Memory
|
||
|
{
|
||
|
AuUInt32 RoundPageUp(AuUInt32 uLength)
|
||
|
{
|
||
|
return AuPageRoundUp(uLength, HWInfo::GetPageSize());
|
||
|
}
|
||
|
}
|