diff options
author | Lioncash <mathew1800@gmail.com> | 2019-04-19 14:33:01 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-04-19 14:34:56 -0400 |
commit | f8be3f55dac95bdea37ff387af8b10626c01a9e5 (patch) | |
tree | d1900411ce6d6b1d759a591139a494fde9ba254a /src | |
parent | 83b830eb2f80de8073a7304ab6270621d062d0b2 (diff) |
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')
-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[] = { {0x33, SvcWrap<GetThreadContext>, "GetThreadContext"}, {0x34, SvcWrap<WaitForAddress>, "WaitForAddress"}, {0x35, SvcWrap<SignalToAddress>, "SignalToAddress"}, - {0x36, nullptr, "Unknown"}, + {0x36, nullptr, "SynchronizePreemptionState"}, {0x37, nullptr, "Unknown"}, {0x38, nullptr, "Unknown"}, {0x39, nullptr, "Unknown"}, |