diff options
| author | 2018-08-13 13:56:41 +0200 | |
|---|---|---|
| committer | 2018-08-13 13:56:41 +0200 | |
| commit | eab35c8235955a4f433a42c93ef92b1a44b9c033 (patch) | |
| tree | 7f2a69b135356f49b7565004e7b277fa6d375c8b /src/core/core_timing.h | |
| parent | Merge pull request #1032 from lioncash/sanitize (diff) | |
| download | yuzu-eab35c8235955a4f433a42c93ef92b1a44b9c033.tar.gz yuzu-eab35c8235955a4f433a42c93ef92b1a44b9c033.tar.xz yuzu-eab35c8235955a4f433a42c93ef92b1a44b9c033.zip | |
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 | |||
| 65 | void ScheduleEventThreadsafe(s64 cycles_into_future, const EventType* event_type, u64 userdata); | 65 | void ScheduleEventThreadsafe(s64 cycles_into_future, const EventType* event_type, u64 userdata); |
| 66 | 66 | ||
| 67 | void UnscheduleEvent(const EventType* event_type, u64 userdata); | 67 | void UnscheduleEvent(const EventType* event_type, u64 userdata); |
| 68 | void UnscheduleEventThreadsafe(const EventType* event_type, u64 userdata); | ||
| 68 | 69 | ||
| 69 | /// We only permit one event of each type in the queue at a time. | 70 | /// We only permit one event of each type in the queue at a time. |
| 70 | void RemoveEvent(const EventType* event_type); | 71 | void RemoveEvent(const EventType* event_type); |