diff options
| author | 2022-10-02 14:26:30 -0700 | |
|---|---|---|
| committer | 2022-10-18 19:13:35 -0700 | |
| commit | abcc009dff5d98b5a04229f3a82baab23d568244 (patch) | |
| tree | e51f99cf493425a3cd331ffdaa1b984554e429aa /src/core/hle/kernel/svc.cpp | |
| parent | core: hle: kernel: k_interrupt_manager: HandleInterrupt should not depend on ... (diff) | |
| download | yuzu-abcc009dff5d98b5a04229f3a82baab23d568244.tar.gz yuzu-abcc009dff5d98b5a04229f3a82baab23d568244.tar.xz yuzu-abcc009dff5d98b5a04229f3a82baab23d568244.zip | |
core: hle: kernel: k_process: Improve management of page table & cleanup.
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
| -rw-r--r-- | src/core/hle/kernel/svc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index bac61fd09..b07ae3f02 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp | |||
| @@ -933,7 +933,7 @@ static Result GetInfo(Core::System& system, u64* result, u64 info_id, Handle han | |||
| 933 | return ResultSuccess; | 933 | return ResultSuccess; |
| 934 | 934 | ||
| 935 | case GetInfoType::UserExceptionContextAddr: | 935 | case GetInfoType::UserExceptionContextAddr: |
| 936 | *result = process->GetTLSRegionAddress(); | 936 | *result = process->GetProcessLocalRegionAddress(); |
| 937 | return ResultSuccess; | 937 | return ResultSuccess; |
| 938 | 938 | ||
| 939 | case GetInfoType::TotalPhysicalMemoryAvailableWithoutSystemResource: | 939 | case GetInfoType::TotalPhysicalMemoryAvailableWithoutSystemResource: |