summaryrefslogtreecommitdiffstats
path: root/sysdep/unix/timer.h
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1998-07-10 10:32:18 +0200
committerMartin Mares <mj@ucw.cz>1998-07-10 10:32:18 +0200
commit28a9a189d71ef3b05daa21d60277149edb8e98ad (patch)
tree0985fb18885ba0664c68943c847fbc5bd1a96e75 /sysdep/unix/timer.h
parenta103373f6147f27e4ac71e5903563e57ce52902c (diff)
downloadbird-28a9a189d71ef3b05daa21d60277149edb8e98ad.tar
bird-28a9a189d71ef3b05daa21d60277149edb8e98ad.zip
Replaced remaining references of clock_t by bird_clock_t.
Diffstat (limited to 'sysdep/unix/timer.h')
-rw-r--r--sysdep/unix/timer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdep/unix/timer.h b/sysdep/unix/timer.h
index 00307f7..ab04aa4 100644
--- a/sysdep/unix/timer.h
+++ b/sysdep/unix/timer.h
@@ -22,7 +22,7 @@ typedef struct timer {
unsigned randomize; /* Amount of randomization */
unsigned recurrent; /* Timer recurrence */
node n; /* Internal link */
- clock_t expires; /* 0=inactive */
+ bird_clock_t expires; /* 0=inactive */
} timer;
timer *tm_new(pool *);
@@ -30,6 +30,6 @@ void tm_start(timer *, unsigned after);
void tm_stop(timer *);
void tm_dump_all(void);
-extern clock_t now;
+extern bird_clock_t now;
#endif