diff options
| author | 2018-01-18 20:35:03 +0100 | |
|---|---|---|
| committer | 2018-01-18 14:35:03 -0500 | |
| commit | 463356f0a74d103ff1d4e6ef5cbd73b8a8b53135 (patch) | |
| tree | 7480773cc23bb2b15870319be0b8249ea81a0c0f /src/core/hle/service/service.cpp | |
| parent | Merge pull request #98 from lioncash/xcode (diff) | |
| download | yuzu-463356f0a74d103ff1d4e6ef5cbd73b8a8b53135.tar.gz yuzu-463356f0a74d103ff1d4e6ef5cbd73b8a8b53135.tar.xz yuzu-463356f0a74d103ff1d4e6ef5cbd73b8a8b53135.zip | |
Start to implement/stub BSD:U and SFDNSRES services (#78)
* bsd: start stubbing bsd:u and sfdnsres
* bsd: stubbed RegisterClient
* bsd: attempt to get past socket()
* bsd: fix some wrong assumptions about IPC
* bsd: fix format specifiers
* bsd: stubbed Connect()
* bsd: stubbed SendTo()
* made requested changes
* sockets: respect alphabetical order at service installation
* run clang-format
* bsd: start stubbing bsd:u and sfdnsres
* bsd: stubbed RegisterClient
* bsd: attempt to get past socket()
* bsd: fix some wrong assumptions about IPC
* bsd: fix format specifiers
* bsd: stubbed Connect()
* bsd: stubbed SendTo()
* made requested changes
* sockets: respect alphabetical order at service installation
* run clang-format
* run clang-format (2)
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 fe76b381c..9a49d9e9c 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -26,6 +26,7 @@ | |||
| 26 | #include "core/hle/service/service.h" | 26 | #include "core/hle/service/service.h" |
| 27 | #include "core/hle/service/sm/controller.h" | 27 | #include "core/hle/service/sm/controller.h" |
| 28 | #include "core/hle/service/sm/sm.h" | 28 | #include "core/hle/service/sm/sm.h" |
| 29 | #include "core/hle/service/sockets/sockets.h" | ||
| 29 | #include "core/hle/service/time/time.h" | 30 | #include "core/hle/service/time/time.h" |
| 30 | #include "core/hle/service/vi/vi.h" | 31 | #include "core/hle/service/vi/vi.h" |
| 31 | 32 | ||
| @@ -174,6 +175,7 @@ void Init() { | |||
| 174 | LM::InstallInterfaces(*SM::g_service_manager); | 175 | LM::InstallInterfaces(*SM::g_service_manager); |
| 175 | Nvidia::InstallInterfaces(*SM::g_service_manager); | 176 | Nvidia::InstallInterfaces(*SM::g_service_manager); |
| 176 | PCTL::InstallInterfaces(*SM::g_service_manager); | 177 | PCTL::InstallInterfaces(*SM::g_service_manager); |
| 178 | Sockets::InstallInterfaces(*SM::g_service_manager); | ||
| 177 | Time::InstallInterfaces(*SM::g_service_manager); | 179 | Time::InstallInterfaces(*SM::g_service_manager); |
| 178 | VI::InstallInterfaces(*SM::g_service_manager); | 180 | VI::InstallInterfaces(*SM::g_service_manager); |
| 179 | 181 | ||