diff options
| author | 2018-07-25 16:37:00 -0400 | |
|---|---|---|
| committer | 2018-07-25 16:57:16 -0400 | |
| commit | c664f8a2573426213c6f4c2f8fa40ad7e0d8443e (patch) | |
| tree | 28fd6c402290199f38d49af3db66409e3a33098f /src/core/hle/service/service.cpp | |
| parent | Merge pull request #801 from lioncash/time (diff) | |
| download | yuzu-c664f8a2573426213c6f4c2f8fa40ad7e0d8443e.tar.gz yuzu-c664f8a2573426213c6f4c2f8fa40ad7e0d8443e.tar.xz yuzu-c664f8a2573426213c6f4c2f8fa40ad7e0d8443e.zip | |
service: Add pm services
Adds the skeleton for the process management services based off
information on Switch Brew.
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 0d036bfaa..e3ff5f705 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -32,6 +32,7 @@ | |||
| 32 | #include "core/hle/service/ns/ns.h" | 32 | #include "core/hle/service/ns/ns.h" |
| 33 | #include "core/hle/service/nvdrv/nvdrv.h" | 33 | #include "core/hle/service/nvdrv/nvdrv.h" |
| 34 | #include "core/hle/service/pctl/pctl.h" | 34 | #include "core/hle/service/pctl/pctl.h" |
| 35 | #include "core/hle/service/pm/pm.h" | ||
| 35 | #include "core/hle/service/prepo/prepo.h" | 36 | #include "core/hle/service/prepo/prepo.h" |
| 36 | #include "core/hle/service/service.h" | 37 | #include "core/hle/service/service.h" |
| 37 | #include "core/hle/service/set/settings.h" | 38 | #include "core/hle/service/set/settings.h" |
| @@ -199,6 +200,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) { | |||
| 199 | Nvidia::InstallInterfaces(*sm); | 200 | Nvidia::InstallInterfaces(*sm); |
| 200 | PCTL::InstallInterfaces(*sm); | 201 | PCTL::InstallInterfaces(*sm); |
| 201 | PlayReport::InstallInterfaces(*sm); | 202 | PlayReport::InstallInterfaces(*sm); |
| 203 | PM::InstallInterfaces(*sm); | ||
| 202 | Sockets::InstallInterfaces(*sm); | 204 | Sockets::InstallInterfaces(*sm); |
| 203 | SPL::InstallInterfaces(*sm); | 205 | SPL::InstallInterfaces(*sm); |
| 204 | SSL::InstallInterfaces(*sm); | 206 | SSL::InstallInterfaces(*sm); |