diff options
| author | 2022-04-11 20:52:51 -0700 | |
|---|---|---|
| committer | 2022-04-11 21:13:40 -0700 | |
| commit | 965c05b43d9270b9085170db702dfaf4bcfe9e3d (patch) | |
| tree | 8aff20e052c0e93312463a832e8988988fce7b95 /src | |
| parent | hle: kernel: k_spin_lock: Remove unused ThreadPause. (diff) | |
| download | yuzu-965c05b43d9270b9085170db702dfaf4bcfe9e3d.tar.gz yuzu-965c05b43d9270b9085170db702dfaf4bcfe9e3d.tar.xz yuzu-965c05b43d9270b9085170db702dfaf4bcfe9e3d.zip | |
core: hle: service: Allocate a service thread.
Diffstat (limited to 'src')
| -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 2477c5612..8a6bd59ff 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"}, |