diff options
| author | bunnei <bunneidev@gmail.com> | 2019-07-18 13:53:04 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-18 13:53:04 -0400 |
| commit | 5d369112d9d467d4257e24ce57f3ebba824556f0 (patch) | |
| tree | ff5dcc2c614dd7d257a0993b651a546e31c5ce9a /src/core/hle/kernel/svc.cpp | |
| parent | 63bda67a342cf0516501fb30a24452ce9944caa0 (diff) | |
| parent | 56c7912159e210e009228f83e6c3ead3e5c99d4b (diff) | |
Merge pull request #2687 from lioncash/tls-process
kernel/process: Allocate the process' TLS region during initialization
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
| -rw-r--r-- | src/core/hle/kernel/svc.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 0687839ff..1fd1a732a 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -843,9 +843,7 @@ static ResultCode GetInfo(Core::System& system, u64* result, u64 info_id, u64 ha return RESULT_SUCCESS; case GetInfoType::UserExceptionContextAddr: - LOG_WARNING(Kernel_SVC, - "(STUBBED) Attempted to query user exception context address, returned 0"); - *result = 0; + *result = process->GetTLSRegionAddress(); return RESULT_SUCCESS; case GetInfoType::TotalPhysicalMemoryAvailableWithoutSystemResource: |
