fully noop dump timers

This commit is contained in:
matthias.ringwald 2010-08-03 19:47:36 +00:00
parent b114010b51
commit 65793526c2

View File

@ -90,12 +90,14 @@ int embedded_remove_timer(timer_source_t *ts){
}
void embedded_dump_timer(){
#ifndef EMBEDDED
linked_item_t *it;
int i = 0;
for (it = (linked_item_t *) timers; it ; it = it->next){
timer_source_t *ts = (timer_source_t*) it;
log_dbg("timer %u, timeout %u\n", i, (unsigned int) ts->timeout.tv_sec);
}
#endif
}
/**