Browse Source

core: hle: service: Allocate a service thread.

nce_cpp
bunnei 4 years ago
parent
commit
74c36ad85f
  1. 3
      src/core/hle/service/ldr/ldr.cpp

3
src/core/hle/service/ldr/ldr.cpp

@ -160,7 +160,8 @@ public:
class RelocatableObject final : public ServiceFramework<RelocatableObject> { class RelocatableObject final : public ServiceFramework<RelocatableObject> {
public: public:
explicit RelocatableObject(Core::System& system_) : ServiceFramework{system_, "ldr:ro"} {
explicit RelocatableObject(Core::System& system_)
: ServiceFramework{system_, "ldr:ro", ServiceThreadType::CreateNew} {
// clang-format off // clang-format off
static const FunctionInfo functions[] = { static const FunctionInfo functions[] = {
{0, &RelocatableObject::LoadModule, "LoadModule"}, {0, &RelocatableObject::LoadModule, "LoadModule"},

Loading…
Cancel
Save