diff options
| author | 2019-07-18 13:53:04 -0400 | |
|---|---|---|
| committer | 2019-07-18 13:53:04 -0400 | |
| commit | 5d369112d9d467d4257e24ce57f3ebba824556f0 (patch) | |
| tree | ff5dcc2c614dd7d257a0993b651a546e31c5ce9a /src/core/hle/kernel/svc.cpp | |
| parent | Merge pull request #2738 from lioncash/shader-ir (diff) | |
| parent | kernel/process: Allocate the process' TLS region during initialization (diff) | |
| download | yuzu-5d369112d9d467d4257e24ce57f3ebba824556f0.tar.gz yuzu-5d369112d9d467d4257e24ce57f3ebba824556f0.tar.xz yuzu-5d369112d9d467d4257e24ce57f3ebba824556f0.zip | |
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 | |||
| 843 | return RESULT_SUCCESS; | 843 | return RESULT_SUCCESS; |
| 844 | 844 | ||
| 845 | case GetInfoType::UserExceptionContextAddr: | 845 | case GetInfoType::UserExceptionContextAddr: |
| 846 | LOG_WARNING(Kernel_SVC, | 846 | *result = process->GetTLSRegionAddress(); |
| 847 | "(STUBBED) Attempted to query user exception context address, returned 0"); | ||
| 848 | *result = 0; | ||
| 849 | return RESULT_SUCCESS; | 847 | return RESULT_SUCCESS; |
| 850 | 848 | ||
| 851 | case GetInfoType::TotalPhysicalMemoryAvailableWithoutSystemResource: | 849 | case GetInfoType::TotalPhysicalMemoryAvailableWithoutSystemResource: |