Rename RB timers to timer_tree

This commit is contained in:
Nils Olav Selåsdal
2013-02-21 15:34:12 +01:00
parent df041ccae4
commit 36ac0bffb1
2 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ struct UCTimer {
/** Timer engine. Must be initialized onnce.*/
struct UCTimers {
RBTree timers;
RBTree timer_tree;
size_t seq; //used to generate unique timers
TAILQ_HEAD(, UCTimer) ready_list; //pending timers to be fired while inside uc_timers_run
};