]> git.ozlabs.org Git - ccan/blobdiff - ccan/timer/timer.h
ccanlint: fix missing file.
[ccan] / ccan / timer / timer.h
index 7a9fb07518a880c3097c5e99d388bddc14d82346..e678f7f7dfcbf78274e89ecbefcdc8e320992f0b 100644 (file)
@@ -165,8 +165,12 @@ void timers_dump(const struct timers *timers, FILE *fp);
 struct timers {
        /* Far in the future. */
        struct list_head far;
+       /* Current time. */
        uint64_t base;
+       /* Overall first value. */
        uint64_t first;
+       /* First value in each level (plus 1 for far list) */
+       uint64_t firsts[(64 + TIMER_LEVEL_BITS-1) / TIMER_LEVEL_BITS + 1];
 
        struct timer_level *level[(64 + TIMER_LEVEL_BITS-1) / TIMER_LEVEL_BITS];
 };