mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 09:55:45 +00:00
Merge pull request #8172 from bunnei/kernel-mutex
hle: kernel: Use std::mutex instead of spin locks for most kernel locking.
This commit is contained in:
commit
4e0c4e9929
12 changed files with 46 additions and 89 deletions
|
@ -160,7 +160,8 @@ public:
|
|||
|
||||
class RelocatableObject final : public ServiceFramework<RelocatableObject> {
|
||||
public:
|
||||
explicit RelocatableObject(Core::System& system_) : ServiceFramework{system_, "ldr:ro"} {
|
||||
explicit RelocatableObject(Core::System& system_)
|
||||
: ServiceFramework{system_, "ldr:ro", ServiceThreadType::CreateNew} {
|
||||
// clang-format off
|
||||
static const FunctionInfo functions[] = {
|
||||
{0, &RelocatableObject::LoadModule, "LoadModule"},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue