Convert UCTimers to use UCoreClock

This commit is contained in:
Nils O. Selåsdal
2013-03-02 21:16:22 +01:00
parent 42269a8a91
commit b0e9988aa5
4 changed files with 25 additions and 12 deletions
+2 -4
View File
@@ -74,10 +74,9 @@ int iomux_run(struct IOMux *mux)
if (uc_timers_first(&mux->timers, &first_timer) == 0) {
future_to_interval(&first_timer, &mux->now, &timeout);
timeoutp = &timeout;
/* fprintf(stdout, "now %d %d future %d %d interval %d %d\n", mux->now.tv_sec, mux->now.tv_usec,
/* TRACEF("now %d %d future %d %d interval %d %d\n", mux->now.tv_sec, mux->now.tv_usec,
first_timer.tv_sec, first_timer.tv_usec,
timeout.tv_sec, timeout.tv_usec);
fflush(stdout);
*/
assert(timeout.tv_sec >= 0);
@@ -101,9 +100,8 @@ int iomux_run(struct IOMux *mux)
int iomux_timers_run(struct IOMux *mux)
{
int event_cnt;
gettimeofday(&mux->now, NULL);
event_cnt = uc_timers_run(&mux->timers, &mux->now);
event_cnt = uc_timers_run(&mux->timers);
assert(event_cnt >= 0);
return event_cnt;
+13 -4
View File
@@ -1,5 +1,6 @@
#include <assert.h>
#include <ucore/ucore_timers.h>
#include <ucore/ucore_clock.h>
static int timers_cmp(const void *a_, const void *b_)
@@ -35,9 +36,15 @@ static void uc_timer_real_add(struct UCTimers *timers, struct UCTimer *timer)
}
void uc_timers_init(struct UCTimers *t)
{
uc_timers_init_ex(t, &ucore_timeofday_clock);
}
void uc_timers_init_ex(struct UCTimers *t, struct UCoreClock *uclock)
{
t->timer_tree.node = NULL;
t->timer_tree.compare = timers_cmp;
t->uclock = uclock;
t->seq = 0;
TAILQ_INIT(&t->ready_list);
}
@@ -54,7 +61,7 @@ void uc_timer_add(struct UCTimers *timers, struct UCTimer *timer, int sec, int u
tmp.tv_sec = sec;
tmp.tv_usec = usec;
gettimeofday(&now, NULL);
timers->uclock->now(timers->uclock, &now);
timeradd(&now, &tmp, &timer->timeout);
uc_timer_real_add(timers, timer);
}
@@ -108,10 +115,13 @@ int uc_timer_running(const struct UCTimer *timer)
}
int uc_timers_run(struct UCTimers *timers, const struct timeval *now)
int uc_timers_run(struct UCTimers *timers)
{
RBNode *node;
int cnt = 0;
struct timeval now;
timers->uclock->now(timers->uclock, &now);
/* First find all the expired nodes, place them in a linked list.
* Callbacks cannot be performed here, as the callback might alter
@@ -122,7 +132,7 @@ int uc_timers_run(struct UCTimers *timers, const struct timeval *now)
for (node = uc_rb_first(&timers->timer_tree); node ; node = uc_rb_next(node)) {
struct UCTimer *t = node->data;
//Note, timercmp does not work for >=
if (!timercmp(now, &t->timeout, <)) {
if (!timercmp(&now, &t->timeout, <)) {
TAILQ_INSERT_TAIL(&timers->ready_list, t, ready_entry);
t->state = UC_TIMER_PENDING; //so uc_timer_remove knows
//it have to remove it from the ready_list
@@ -151,7 +161,6 @@ int uc_timers_run(struct UCTimers *timers, const struct timeval *now)
cnt++;
}
return cnt;
}