Core: Protect each event from race conditions within it.
This commit is contained in:
parent
d3becee4c0
commit
0043292951
2 changed files with 2 additions and 0 deletions
|
@ -226,6 +226,7 @@ std::optional<s64> CoreTiming::Advance() {
|
|||
event_mutex.unlock();
|
||||
|
||||
if (const auto event_type{evt.type.lock()}) {
|
||||
std::unique_lock<std::mutex> lk(event_type->guard);
|
||||
event_type->callback(evt.user_data, std::chrono::nanoseconds{static_cast<s64>(
|
||||
GetGlobalTimeNs().count() - evt.time)});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue