summaryrefslogtreecommitdiffstats
path: root/sysdep
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1998-05-24 16:40:29 +0200
committerMartin Mares <mj@ucw.cz>1998-05-24 16:40:29 +0200
commita2ccbb0b97c1eac3a68f01b7786822a66aaaefa2 (patch)
tree211ea73def9469071d42aac19313bef26b791e63 /sysdep
parent235562ca5ac1db2e2ea026bff42c8c2a898b44db (diff)
downloadbird-a2ccbb0b97c1eac3a68f01b7786822a66aaaefa2.tar
bird-a2ccbb0b97c1eac3a68f01b7786822a66aaaefa2.zip
Implemented timers. Using bird_clock_t for absolute time from now...
Diffstat (limited to 'sysdep')
-rw-r--r--sysdep/config.h5
-rw-r--r--sysdep/unix/Modules2
-rw-r--r--sysdep/unix/timer.h22
3 files changed, 22 insertions, 7 deletions
diff --git a/sysdep/config.h b/sysdep/config.h
index c9c1393..65a0110 100644
--- a/sysdep/config.h
+++ b/sysdep/config.h
@@ -40,6 +40,11 @@ typedef u16 word;
#define CPU_STRUCT_ALIGN 4
+/* Timers */
+
+#undef TIME_T_IS_64BIT
+#define TIME_T_IS_SIGNED
+
/* Protocol options */
#define CONFIG_STATIC
diff --git a/sysdep/unix/Modules b/sysdep/unix/Modules
index 450f579..95b80b3 100644
--- a/sysdep/unix/Modules
+++ b/sysdep/unix/Modules
@@ -1,3 +1,5 @@
log.c
main.c
timer.h
+io.c
+unix.h
diff --git a/sysdep/unix/timer.h b/sysdep/unix/timer.h
index 506e3c9..0589ec0 100644
--- a/sysdep/unix/timer.h
+++ b/sysdep/unix/timer.h
@@ -1,5 +1,5 @@
/*
- * BIRD Timers
+ * BIRD -- Unix Timers
*
* (c) 1998 Martin Mares <mj@ucw.cz>
*
@@ -9,18 +9,26 @@
#ifndef _BIRD_TIMER_H_
#define _BIRD_TIMER_H_
+#include <sys/time.h>
+
#include "lib/resource.h"
+typedef time_t bird_clock_t; /* Use instead of time_t */
+
typedef struct timer {
- resource r;
- void (*hook)(struct timer *);
- void *data;
- /* internal fields should be here */
+ resource r;
+ void (*hook)(struct timer *);
+ void *data;
+ unsigned randomize; /* Amount of randomization */
+ node n; /* Internal link */
+ clock_t expires; /* 0=inactive */
} timer;
-timer *tm_new(pool *, void (*hook)(timer *), void *data);
+timer *tm_new(pool *);
void tm_start(timer *, unsigned after);
void tm_stop(timer *);
-void tm_trigger(timer *);
+void tm_dump_all(void);
+
+extern clock_t now;
#endif