diff options
| author | 2022-04-16 00:05:04 +0200 | |
|---|---|---|
| committer | 2022-04-16 00:05:04 +0200 | |
| commit | 34710065e84ccc3de4433b7dd0ffb569e14788b8 (patch) | |
| tree | 5e96d11546befd9671dff252e8e9e8a693b0bd1a /src/core/hle/service/ldr | |
| parent | Merge pull request #8190 from Docteh/palswap (diff) | |
| parent | core: hle: kernel: k_thread: Rework dummy thread waiting. (diff) | |
| download | yuzu-34710065e84ccc3de4433b7dd0ffb569e14788b8.tar.gz yuzu-34710065e84ccc3de4433b7dd0ffb569e14788b8.tar.xz yuzu-34710065e84ccc3de4433b7dd0ffb569e14788b8.zip | |
Merge pull request #8172 from bunnei/kernel-mutex
hle: kernel: Use std::mutex instead of spin locks for most kernel locking.
Diffstat (limited to 'src/core/hle/service/ldr')
| -rw-r--r-- | src/core/hle/service/ldr/ldr.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/ldr/ldr.cpp b/src/core/hle/service/ldr/ldr.cpp index cf727c167..42f9cf811 100644 --- a/src/core/hle/service/ldr/ldr.cpp +++ b/src/core/hle/service/ldr/ldr.cpp | |||
| @@ -160,7 +160,8 @@ public: | |||
| 160 | 160 | ||
| 161 | class RelocatableObject final : public ServiceFramework<RelocatableObject> { | 161 | class RelocatableObject final : public ServiceFramework<RelocatableObject> { |
| 162 | public: | 162 | public: |
| 163 | explicit RelocatableObject(Core::System& system_) : ServiceFramework{system_, "ldr:ro"} { | 163 | explicit RelocatableObject(Core::System& system_) |
| 164 | : ServiceFramework{system_, "ldr:ro", ServiceThreadType::CreateNew} { | ||
| 164 | // clang-format off | 165 | // clang-format off |
| 165 | static const FunctionInfo functions[] = { | 166 | static const FunctionInfo functions[] = { |
| 166 | {0, &RelocatableObject::LoadModule, "LoadModule"}, | 167 | {0, &RelocatableObject::LoadModule, "LoadModule"}, |