Move to GetGlobalTimeNs, fix GetTotalPhysicalMemoryAvailable

This commit is contained in:
Chloe Marcec 2021-01-30 21:03:10 +11:00
parent 3be1a565f8
commit 3bf62c7a8a
3 changed files with 7 additions and 9 deletions

View file

@ -154,7 +154,7 @@ void Process::DecrementThreadCount() {
}
u64 Process::GetTotalPhysicalMemoryAvailable() const {
const u64 capacity{resource_limit->GetCurrentValue(LimitableResource::PhysicalMemoryMax) +
const u64 capacity{resource_limit->GetFreeValue(LimitableResource::PhysicalMemoryMax) +
page_table->GetTotalHeapSize() + GetSystemResourceSize() + image_size +
main_thread_stack_size};