Skip to content
Snippets Groups Projects
timer_impl.h 277 B
#ifndef TIMER_IMPL_H
#define TIMER_IMPL_H

#define ATIMER_T	1

#include <libubox/uloop.h>
#include <sys/time.h>

struct atimer {
	/* uloop timer implementation */
	struct uloop_timeout t;
	struct timeval expires;
};

typedef struct atimer atimer_t;


#endif /* TIMER_IMPL_H */