X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2Futil%2Ftimer.h;h=df06fc3453ce7e3b879d2e16debd795bf71786c2;hb=367bf8f76227dea6e7e10e974967ae1d60cfe38e;hp=fae0203546c39dd40e6847f8285d4c6435622b03;hpb=4ca207e8f31e8b608faf74eead20dd28eb91fc89;p=chaz%2Ftint2 diff --git a/src/util/timer.h b/src/util/timer.h index fae0203..df06fc3 100644 --- a/src/util/timer.h +++ b/src/util/timer.h @@ -21,28 +21,34 @@ #include -extern GSList* timer_list; +extern GSList* timeout_list; +extern struct timeval next_timeout; -struct timer { - int id; - void (*_callback)(); +struct timeout { + int interval_msec; + struct timespec timeout_expires; + void (*_callback)(void*); + void* arg; + void* multi_timeout; }; // timer functions -/** installs a timer with the first timeout 'value_sec' and then a periodic timeout with interval_sec - * '_callback' is the callback function when the timer reaches the timeout. - * If 'value_sec' == 0 then the timer is disabled (but not uninstalled) - * If 'interval_sec' == 0 the timer is a single shot timer, ie. no periodic timeout occur - * returns the 'id' of the timer, which is needed for uninstalling the timer **/ -int install_timer(int value_sec, int value_nsec, int interval_sec, int interval_nsec, void (*_callback)()); - -/** resets a timer to the new values. If 'id' does not exist nothing happens. - * If value_sec == 0 the timer is stopped **/ -void reset_timer(int id, int value_sec, int value_nsec, int interval_sec, int interval_nsec); - -/** uninstalls a timer with the given 'id'. If no timer is installed with this id nothing happens **/ -void uninstall_timer(int id); +/** installs a timeout with the first timeout of 'value_msec' and then a periodic timeout with + * 'interval_msec'. '_callback' is the callback function when the timer reaches the timeout. + * returns a pointer to the timeout, which is needed for stopping it again **/ +const struct timeout* add_timeout(int value_msec, int interval_msec, void (*_callback)(void*), void* arg); + +void change_timeout(const struct timeout* t, int value_msec, int interval_msec, void (*_callback)(void*), void* arg); + +/** stops the timeout 't' **/ +void stop_timeout(const struct timeout* t); + +/** stops all timeouts **/ +void stop_all_timeouts(); + +void update_next_timeout(); +void callback_timeout_expired(); #endif // TIMER_H