diff options
| author | 2019-04-19 14:33:01 -0400 | |
|---|---|---|
| committer | 2019-04-19 14:34:56 -0400 | |
| commit | f8be3f55dac95bdea37ff387af8b10626c01a9e5 (patch) | |
| tree | d1900411ce6d6b1d759a591139a494fde9ba254a /src/core/hle/kernel/svc.cpp | |
| parent | Merge pull request #2397 from lioncash/thread-unused (diff) | |
| download | yuzu-f8be3f55dac95bdea37ff387af8b10626c01a9e5.tar.gz yuzu-f8be3f55dac95bdea37ff387af8b10626c01a9e5.tar.xz yuzu-f8be3f55dac95bdea37ff387af8b10626c01a9e5.zip | |
kernel/svc: Name supervisor call 0x36
This call was added to the SVC handlers in the 8.0.0 kernel, so we can
finally give it a name.
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 4eeb97bef..4c763b288 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp | |||
| @@ -2290,7 +2290,7 @@ static const FunctionDef SVC_Table[] = { | |||
| 2290 | {0x33, SvcWrap<GetThreadContext>, "GetThreadContext"}, | 2290 | {0x33, SvcWrap<GetThreadContext>, "GetThreadContext"}, |
| 2291 | {0x34, SvcWrap<WaitForAddress>, "WaitForAddress"}, | 2291 | {0x34, SvcWrap<WaitForAddress>, "WaitForAddress"}, |
| 2292 | {0x35, SvcWrap<SignalToAddress>, "SignalToAddress"}, | 2292 | {0x35, SvcWrap<SignalToAddress>, "SignalToAddress"}, |
| 2293 | {0x36, nullptr, "Unknown"}, | 2293 | {0x36, nullptr, "SynchronizePreemptionState"}, |
| 2294 | {0x37, nullptr, "Unknown"}, | 2294 | {0x37, nullptr, "Unknown"}, |
| 2295 | {0x38, nullptr, "Unknown"}, | 2295 | {0x38, nullptr, "Unknown"}, |
| 2296 | {0x39, nullptr, "Unknown"}, | 2296 | {0x39, nullptr, "Unknown"}, |