From 65793526c2ed11f51d9a55afd213b3284bbd296c Mon Sep 17 00:00:00 2001 From: "matthias.ringwald" Date: Tue, 3 Aug 2010 19:47:36 +0000 Subject: [PATCH] fully noop dump timers --- src/run_loop_embedded.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/run_loop_embedded.c b/src/run_loop_embedded.c index 39f764913..8da924f2d 100644 --- a/src/run_loop_embedded.c +++ b/src/run_loop_embedded.c @@ -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 } /**