summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_address_arbiter.cpp
diff options
context:
space:
mode:
authorFernando S <fsahmkow27@gmail.com>2022-03-01 22:50:52 +0100
committerGitHub <noreply@github.com>2022-03-01 22:50:52 +0100
commite06a1337178cc203fff1b92aaca499b74c77437f (patch)
tree008c01b1b489e9526667534458683e98d7eb85b8 /src/core/hle/kernel/k_address_arbiter.cpp
parentMerge pull request #7967 from zhaobot/tx-update-20220301023432 (diff)
parentdynarmic: Update to latest master (diff)
downloadyuzu-e06a1337178cc203fff1b92aaca499b74c77437f.tar
yuzu-e06a1337178cc203fff1b92aaca499b74c77437f.tar.gz
yuzu-e06a1337178cc203fff1b92aaca499b74c77437f.tar.bz2
yuzu-e06a1337178cc203fff1b92aaca499b74c77437f.tar.lz
yuzu-e06a1337178cc203fff1b92aaca499b74c77437f.tar.xz
yuzu-e06a1337178cc203fff1b92aaca499b74c77437f.tar.zst
yuzu-e06a1337178cc203fff1b92aaca499b74c77437f.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/k_address_arbiter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_address_arbiter.cpp b/src/core/hle/kernel/k_address_arbiter.cpp
index 783c69858..1d1f5e5f8 100644
--- a/src/core/hle/kernel/k_address_arbiter.cpp
+++ b/src/core/hle/kernel/k_address_arbiter.cpp
@@ -49,7 +49,7 @@ bool DecrementIfLessThan(Core::System& system, s32* out, VAddr address, s32 valu
}
} else {
// Otherwise, clear our exclusive hold and finish
- monitor.ClearExclusive();
+ monitor.ClearExclusive(current_core);
}
// We're done.
@@ -78,7 +78,7 @@ bool UpdateIfEqual(Core::System& system, s32* out, VAddr address, s32 value, s32
}
} else {
// Otherwise, clear our exclusive hold and finish.
- monitor.ClearExclusive();
+ monitor.ClearExclusive(current_core);
}
// We're done.