1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-11-04 08:17:17 -05:00
elinks/src/main/timer.c
Jonas Fonseca 5dffe2e8ac Fix various sparse warnings
Mostly non-ANSI function declarations, using 0 as NULL and inline
function prototypes. Also removed unused S_HTTP_100 network state
enum type, which text message contained unknown escape sequence: '\?'.
2005-11-24 15:38:47 +01:00

109 lines
1.8 KiB
C

/* Timers. */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "elinks.h"
#include "main/select.h"
#include "main/timer.h"
#include "util/error.h"
#include "util/lists.h"
#include "util/memory.h"
#include "util/time.h"
struct timer {
LIST_HEAD(struct timer);
timeval_T interval;
void (*func)(void *);
void *data;
};
static INIT_LIST_HEAD(timers);
int
get_timers_count(void)
{
return list_size(&timers);
}
void
check_timers(timeval_T *last_time)
{
timeval_T now;
timeval_T interval;
struct timer *timer, *next;
timeval_now(&now);
timeval_sub(&interval, last_time, &now);
foreach (timer, timers) {
timeval_sub_interval(&timer->interval, &interval);
}
foreachsafe (timer, next, timers) {
if (timeval_is_positive(&timer->interval))
break;
del_from_list(timer);
timer->func(timer->data);
mem_free(timer);
check_bottom_halves();
}
timeval_copy(last_time, &now);
}
void
install_timer(timer_id_T *id, milliseconds_T delay, void (*func)(void *), void *data)
{
struct timer *new_timer, *timer;
assert(id && delay > 0);
new_timer = mem_alloc(sizeof(*new_timer));
*id = (timer_id_T) new_timer; /* TIMER_ID_UNDEF is NULL */
if (!new_timer) return;
timeval_from_milliseconds(&new_timer->interval, delay);
new_timer->func = func;
new_timer->data = data;
foreach (timer, timers) {
if (timeval_cmp(&timer->interval, &new_timer->interval) >= 0)
break;
}
add_at_pos(timer->prev, new_timer);
}
void
kill_timer(timer_id_T *id)
{
struct timer *timer;
assert(id != NULL);
if (*id == TIMER_ID_UNDEF) return;
timer = *id;
del_from_list(timer);
mem_free(timer);
*id = TIMER_ID_UNDEF;
}
int
get_next_timer_time(timeval_T *t)
{
if (!list_empty(timers)) {
timeval_copy(t, &((struct timer *) &timers)->next->interval);
return 1;
}
return 0;
}