diff options
| author | bunnei <bunneidev@gmail.com> | 2018-08-15 18:25:30 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-15 18:25:30 -0400 |
| commit | 1dd27aff476f4831aab571442b0cc882a8bb0b95 (patch) | |
| tree | 1571009dc837518fcd3497ea54fe9e4bd5c66494 /src/core/core_timing.h | |
| parent | cee6a7ab556c892839f2f887d6f5792aebb31bd9 (diff) | |
| parent | eab35c8235955a4f433a42c93ef92b1a44b9c033 (diff) | |
Merge pull request #1051 from B3n30/UnscheduleEventThreadsafe
Core::CoreTiming: add UnscheduleEventThreadsafe
Diffstat (limited to 'src/core/core_timing.h')
| -rw-r--r-- | src/core/core_timing.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/core_timing.h b/src/core/core_timing.h index dfa161c0d..9ed757bd7 100644 --- a/src/core/core_timing.h +++ b/src/core/core_timing.h @@ -65,6 +65,7 @@ void ScheduleEvent(s64 cycles_into_future, const EventType* event_type, u64 user void ScheduleEventThreadsafe(s64 cycles_into_future, const EventType* event_type, u64 userdata); void UnscheduleEvent(const EventType* event_type, u64 userdata); +void UnscheduleEventThreadsafe(const EventType* event_type, u64 userdata); /// We only permit one event of each type in the queue at a time. void RemoveEvent(const EventType* event_type); |
