mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 12:15:45 +00:00
Merge pull request #2234 from lioncash/mutex
core/hle/kernel: Make Mutex a per-process class.
This commit is contained in:
commit
245c751cbf
5 changed files with 62 additions and 29 deletions
|
@ -229,7 +229,8 @@ void Process::LoadModule(CodeSet module_, VAddr base_addr) {
|
|||
}
|
||||
|
||||
Process::Process(Core::System& system)
|
||||
: WaitObject{system.Kernel()}, address_arbiter{system}, system{system} {}
|
||||
: WaitObject{system.Kernel()}, address_arbiter{system}, mutex{system}, system{system} {}
|
||||
|
||||
Process::~Process() = default;
|
||||
|
||||
void Process::Acquire(Thread* thread) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue