diff options
author | Harald Welte <laforge@gnumonks.org> | 2011-10-17 13:30:56 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2011-10-17 13:30:56 +0200 |
commit | 16df9171312c2489ec825cb962ced1f1220a2691 (patch) | |
tree | 9ffec601f9f7a072352b3371c1951cd0fec66ffc /include/osmocom/core/timer.h | |
parent | e2bcaceee6d8a8f9f50854bf1695d5cd1f53f7c6 (diff) | |
parent | 4a0a163d817a08662adef7a286cb01cbdef47b05 (diff) |
Merge branch 'pablo_timer'
Diffstat (limited to 'include/osmocom/core/timer.h')
-rw-r--r-- | include/osmocom/core/timer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/osmocom/core/timer.h b/include/osmocom/core/timer.h index 8f8c826d..30f558b4 100644 --- a/include/osmocom/core/timer.h +++ b/include/osmocom/core/timer.h @@ -32,6 +32,7 @@ #include <sys/time.h> #include <osmocom/core/linuxlist.h> +#include <osmocom/core/linuxrbtree.h> /** * Timer management: @@ -51,11 +52,10 @@ */ /*! \brief A structure representing a single instance of a timer */ struct osmo_timer_list { - struct llist_head entry; /*!< \brief linked list header */ + struct rb_node node; /*!< \brief rb-tree node header */ + struct llist_head list; /*!< \brief internal list header */ struct timeval timeout; /*!< \brief expiration time */ unsigned int active : 1; /*!< \brief is it active? */ - unsigned int handled : 1; /*!< \brief did we already handle it */ - unsigned int in_list : 1; /*!< \brief is it in the global list? */ void (*cb)(void*); /*!< \brief call-back called at timeout */ void *data; /*!< \brief user data for callback */ |