diff options
| author | 2023-02-19 14:42:12 -0500 | |
|---|---|---|
| committer | 2023-03-01 10:39:49 -0500 | |
| commit | 65be230fdda302b25447f2f09b06e3238bd09e79 (patch) | |
| tree | 68250d7bc8151041b236dcd79483df98938952cd /src/core/hle/service/lm | |
| parent | sm:: remove unused member (diff) | |
| download | yuzu-65be230fdda302b25447f2f09b06e3238bd09e79.tar.gz yuzu-65be230fdda302b25447f2f09b06e3238bd09e79.tar.xz yuzu-65be230fdda302b25447f2f09b06e3238bd09e79.zip | |
service: move hle_ipc from kernel
Diffstat (limited to 'src/core/hle/service/lm')
| -rw-r--r-- | src/core/hle/service/lm/lm.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/service/lm/lm.cpp b/src/core/hle/service/lm/lm.cpp index 7efd8e0ab..20df00233 100644 --- a/src/core/hle/service/lm/lm.cpp +++ b/src/core/hle/service/lm/lm.cpp | |||
| @@ -8,7 +8,7 @@ | |||
| 8 | #include <boost/container_hash/hash.hpp> | 8 | #include <boost/container_hash/hash.hpp> |
| 9 | #include "common/logging/log.h" | 9 | #include "common/logging/log.h" |
| 10 | #include "core/core.h" | 10 | #include "core/core.h" |
| 11 | #include "core/hle/ipc_helpers.h" | 11 | #include "core/hle/service/ipc_helpers.h" |
| 12 | #include "core/hle/service/lm/lm.h" | 12 | #include "core/hle/service/lm/lm.h" |
| 13 | #include "core/hle/service/server_manager.h" | 13 | #include "core/hle/service/server_manager.h" |
| 14 | #include "core/hle/service/service.h" | 14 | #include "core/hle/service/service.h" |
| @@ -93,7 +93,7 @@ public: | |||
| 93 | } | 93 | } |
| 94 | 94 | ||
| 95 | private: | 95 | private: |
| 96 | void Log(Kernel::HLERequestContext& ctx) { | 96 | void Log(HLERequestContext& ctx) { |
| 97 | std::size_t offset{}; | 97 | std::size_t offset{}; |
| 98 | const auto data = ctx.ReadBuffer(); | 98 | const auto data = ctx.ReadBuffer(); |
| 99 | 99 | ||
| @@ -148,7 +148,7 @@ private: | |||
| 148 | } | 148 | } |
| 149 | } | 149 | } |
| 150 | 150 | ||
| 151 | void SetDestination(Kernel::HLERequestContext& ctx) { | 151 | void SetDestination(HLERequestContext& ctx) { |
| 152 | IPC::RequestParser rp{ctx}; | 152 | IPC::RequestParser rp{ctx}; |
| 153 | const auto log_destination = rp.PopEnum<LogDestination>(); | 153 | const auto log_destination = rp.PopEnum<LogDestination>(); |
| 154 | 154 | ||
| @@ -343,7 +343,7 @@ public: | |||
| 343 | } | 343 | } |
| 344 | 344 | ||
| 345 | private: | 345 | private: |
| 346 | void OpenLogger(Kernel::HLERequestContext& ctx) { | 346 | void OpenLogger(HLERequestContext& ctx) { |
| 347 | LOG_DEBUG(Service_LM, "called"); | 347 | LOG_DEBUG(Service_LM, "called"); |
| 348 | 348 | ||
| 349 | IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | 349 | IPC::ResponseBuilder rb{ctx, 2, 0, 1}; |