summaryrefslogtreecommitdiff
path: root/quantum
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2023-12-20 22:32:49 +0000
committerQMK Bot <hello@qmk.fm>2023-12-20 22:32:49 +0000
commit6fbd79ce4e547094cf125b20c029127563b6f477 (patch)
tree80160c3530d1e331838af48941e70155c12ccea5 /quantum
parente80f5de78c9f974863424e7f055ff79c971e5e56 (diff)
parent2661ee282a7edfdff299d2ccfc298dac75cf65e4 (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'quantum')
-rw-r--r--quantum/deferred_exec.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/quantum/deferred_exec.c b/quantum/deferred_exec.c
index a0046a9648..b3be3747d4 100644
--- a/quantum/deferred_exec.c
+++ b/quantum/deferred_exec.c
@@ -124,13 +124,19 @@ void deferred_exec_advanced_task(deferred_executor_t *table, size_t table_count,
// Run through each of the executors
for (int i = 0; i < table_count; ++i) {
- deferred_executor_t *entry = &table[i];
+ deferred_executor_t *entry = &table[i];
+ deferred_token curr_token = entry->token;
// Check if we're supposed to execute this entry
- if (entry->token != INVALID_DEFERRED_TOKEN && ((int32_t)TIMER_DIFF_32(entry->trigger_time, now)) <= 0) {
+ if (curr_token != INVALID_DEFERRED_TOKEN && ((int32_t)TIMER_DIFF_32(entry->trigger_time, now)) <= 0) {
// Invoke the callback and work work out if we should be requeued
uint32_t delay_ms = entry->callback(entry->trigger_time, entry->cb_arg);
+ // If the token has changed, then the callback has canceled and re-queued. Skip further processing.
+ if (entry->token != curr_token) {
+ continue;
+ }
+
// Update the trigger time if we have to repeat, otherwise clear it out
if (delay_ms > 0) {
// Intentionally add just the delay to the existing trigger time -- this ensures the next