Browse Source
Merge pull request #228 from Subv/unschedule_events
CoreTiming: Unschedule the pending events when an Interface is destroyed
pull/15/merge
bunnei
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
10 additions and
2 deletions
-
src/core/hle/service/audio/audout_u.cpp
-
src/core/hle/service/audio/audren_u.cpp
-
src/core/hle/service/hid/hid.cpp
|
|
|
@ -52,7 +52,9 @@ public: |
|
|
|
CoreTiming::ScheduleEvent(audio_ticks, audio_event); |
|
|
|
} |
|
|
|
|
|
|
|
~IAudioOut() = default; |
|
|
|
~IAudioOut() { |
|
|
|
CoreTiming::UnscheduleEvent(audio_event, 0); |
|
|
|
} |
|
|
|
|
|
|
|
private: |
|
|
|
void StartAudioOut(Kernel::HLERequestContext& ctx) { |
|
|
|
|
|
|
|
@ -45,7 +45,9 @@ public: |
|
|
|
// Start the audio event
|
|
|
|
CoreTiming::ScheduleEvent(audio_ticks, audio_event); |
|
|
|
} |
|
|
|
~IAudioRenderer() = default; |
|
|
|
~IAudioRenderer() { |
|
|
|
CoreTiming::UnscheduleEvent(audio_event, 0); |
|
|
|
} |
|
|
|
|
|
|
|
private: |
|
|
|
void UpdateAudioCallback() { |
|
|
|
|
|
|
|
@ -45,6 +45,10 @@ public: |
|
|
|
CoreTiming::ScheduleEvent(pad_update_ticks, pad_update_event); |
|
|
|
} |
|
|
|
|
|
|
|
~IAppletResource() { |
|
|
|
CoreTiming::UnscheduleEvent(pad_update_event, 0); |
|
|
|
} |
|
|
|
|
|
|
|
private: |
|
|
|
void GetSharedMemoryHandle(Kernel::HLERequestContext& ctx) { |
|
|
|
IPC::ResponseBuilder rb{ctx, 2, 1}; |
|
|
|
|