X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fdrv%2Ftimer.h;h=b006c5f4a3037b753a2b5bb3005983a1cbf4e053;hb=0088022a7741d4636b054f47c67be353d9242af2;hp=a68ee5b21dd9703735582fdad4c701ea7f10ec69;hpb=11bd07ba56015a0ad55fc0cb3b41d0757dcdc03f;p=bertos.git diff --git a/bertos/drv/timer.h b/bertos/drv/timer.h index a68ee5b2..b006c5f4 100644 --- a/bertos/drv/timer.h +++ b/bertos/drv/timer.h @@ -291,7 +291,12 @@ INLINE void timer_setSoftint(Timer *timer, Hook func, iptr_t user_data) event_initSoftint(&timer->expire, func, user_data); } -/** Set the timer delay (the time before the event will be triggered) */ +/** + * Set the timer delay (the time before the event will be triggered) + * + * \note It's illegal to change the delay of the timer when it's + * still running. + */ INLINE void timer_setDelay(Timer *timer, ticks_t delay) { timer->_delay = delay; @@ -310,6 +315,18 @@ void synctimer_poll(List* q); #if defined(CONFIG_KERN_SIGNALS) && CONFIG_KERN_SIGNALS +/** Set the timer so that it sends a event notification when it expires */ +INLINE void timer_setEvent(Timer *timer) +{ + event_initGeneric(&timer->expire); +} + +/** Wait until the timer expires */ +INLINE void timer_waitEvent(Timer *timer) +{ + event_wait(&timer->expire); +} + /** Set the timer so that it sends a signal when it expires */ INLINE void timer_setSignal(Timer *timer, struct Process *proc, sigmask_t sigs) {