mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-23 19:26:55 -04:00
kern: implement SvcSleepSystem
This commit is contained in:
parent
418de7b0dc
commit
9231646f33
22 changed files with 1242 additions and 49 deletions
|
@ -21,20 +21,22 @@ namespace ams::kern::svc {
|
|||
|
||||
namespace {
|
||||
|
||||
|
||||
void SleepSystem() {
|
||||
return KSystemControl::SleepSystem();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* ============================= 64 ABI ============================= */
|
||||
|
||||
void SleepSystem64() {
|
||||
MESOSPHERE_PANIC("Stubbed SvcSleepSystem64 was called.");
|
||||
return SleepSystem();
|
||||
}
|
||||
|
||||
/* ============================= 64From32 ABI ============================= */
|
||||
|
||||
void SleepSystem64From32() {
|
||||
MESOSPHERE_PANIC("Stubbed SvcSleepSystem64From32 was called.");
|
||||
return SleepSystem();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue