mirror of
https://notabug.org/litucks/torzu.git
synced 2025-05-05 09:25:32 +00:00
kernel: fix incorrect calculation of used non system memory value
This commit is contained in:
parent
85a89ca3e3
commit
249db0a59b
@ -149,7 +149,7 @@ u64 KProcess::GetTotalPhysicalMemoryUsed() {
|
||||
}
|
||||
|
||||
u64 KProcess::GetTotalPhysicalMemoryUsedWithoutSystemResource() {
|
||||
return this->GetTotalPhysicalMemoryUsed() - this->GetSystemResourceUsage();
|
||||
return this->GetTotalPhysicalMemoryUsed() - this->GetSystemResourceSize();
|
||||
}
|
||||
|
||||
bool KProcess::ReleaseUserException(KThread* thread) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user