diff options
| author | 2019-07-07 12:08:29 -0700 | |
|---|---|---|
| committer | 2019-07-07 12:08:29 -0700 | |
| commit | b901cd584e7c63ace5feb095279e1671fc605129 (patch) | |
| tree | e0809a3b6356e9dcee4295b809deb7e59b051bc6 /src/core/hle/kernel/process.cpp | |
| parent | address review commentary (diff) | |
| download | yuzu-b901cd584e7c63ace5feb095279e1671fc605129.tar.gz yuzu-b901cd584e7c63ace5feb095279e1671fc605129.tar.xz yuzu-b901cd584e7c63ace5feb095279e1671fc605129.zip | |
clang-format fixes
Diffstat (limited to 'src/core/hle/kernel/process.cpp')
| -rw-r--r-- | src/core/hle/kernel/process.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/kernel/process.cpp b/src/core/hle/kernel/process.cpp index b0690be34..db3ab14ce 100644 --- a/src/core/hle/kernel/process.cpp +++ b/src/core/hle/kernel/process.cpp | |||
| @@ -134,7 +134,8 @@ u64 Process::GetTotalPhysicalMemoryAvailableWithoutSystemResource() const { | |||
| 134 | } | 134 | } |
| 135 | 135 | ||
| 136 | u64 Process::GetTotalPhysicalMemoryUsed() const { | 136 | u64 Process::GetTotalPhysicalMemoryUsed() const { |
| 137 | return vm_manager.GetCurrentHeapSize() + main_thread_stack_size + code_memory_size + GetSystemResourceUsage(); | 137 | return vm_manager.GetCurrentHeapSize() + main_thread_stack_size + code_memory_size + |
| 138 | GetSystemResourceUsage(); | ||
| 138 | } | 139 | } |
| 139 | 140 | ||
| 140 | u64 Process::GetTotalPhysicalMemoryUsedWithoutSystemResource() const { | 141 | u64 Process::GetTotalPhysicalMemoryUsedWithoutSystemResource() const { |