1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 06:23:53 +01:00

Merge pull request #17561 from fjmolinas/pr_ztimer64_flag

sys/ztimer64/util.c: fix ztimer64_set_timeout_flag
This commit is contained in:
Kaspar Schleiser 2022-01-24 21:19:15 +01:00 committed by GitHub
commit ae210fcf46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -131,7 +131,7 @@ void ztimer64_set_timeout_flag_at(ztimer64_clock_t *clock, ztimer64_t *t,
t->callback = _set_timeout_flag_callback;
t->arg = thread_get_active();
thread_flags_clear(THREAD_FLAG_TIMEOUT);
ztimer64_set(clock, t, target);
ztimer64_set_at(clock, t, target);
}
#endif