mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-18 00:54:23 -04:00
kern: implement all device address space svcs
This commit is contained in:
parent
9beb05da50
commit
9c4c058307
6 changed files with 427 additions and 35 deletions
|
@ -115,9 +115,7 @@ namespace ams::kern::svc {
|
|||
}
|
||||
|
||||
Result WaitSynchronization64(int32_t *out_index, KUserPointer<const ams::svc::Handle *> handles, int32_t num_handles, int64_t timeout_ns) {
|
||||
Result result = WaitSynchronization(out_index, handles, num_handles, timeout_ns);
|
||||
MESOSPHERE_LOG("WaitSynchronization returned %08x\n", result.GetValue());
|
||||
return result;
|
||||
return WaitSynchronization(out_index, handles, num_handles, timeout_ns);
|
||||
}
|
||||
|
||||
Result CancelSynchronization64(ams::svc::Handle handle) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue