aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/timer.h
diff options
context:
space:
mode:
Diffstat (limited to 'openbsc/include/openbsc/timer.h')
-rw-r--r--openbsc/include/openbsc/timer.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/openbsc/include/openbsc/timer.h b/openbsc/include/openbsc/timer.h
index ae67a5a1a..fee888bfd 100644
--- a/openbsc/include/openbsc/timer.h
+++ b/openbsc/include/openbsc/timer.h
@@ -44,9 +44,9 @@
struct timer_list {
struct llist_head entry;
struct timeval timeout;
- int active : 1;
- int handled : 1;
- int in_list : 1;
+ unsigned int active : 1;
+ unsigned int handled : 1;
+ unsigned int in_list : 1;
void (*cb)(void*);
void *data;
@@ -67,5 +67,6 @@ int bsc_timer_pending(struct timer_list *timer);
struct timeval *bsc_nearest_timer();
void bsc_prepare_timers();
int bsc_update_timers();
+int bsc_timer_check(void);
#endif