]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Moved TIME_INFINITY to timer.h, so that it's publicly available.
authorMartin Mares <mj@ucw.cz>
Tue, 30 Nov 1999 14:01:39 +0000 (14:01 +0000)
committerMartin Mares <mj@ucw.cz>
Tue, 30 Nov 1999 14:01:39 +0000 (14:01 +0000)
sysdep/unix/io.c
sysdep/unix/timer.h

index 5bc9b5ac914559b17731aa0abf70b4ebe9334b3a..511c949726c9b81793280dfe12938a81820c7989 100644 (file)
@@ -55,16 +55,6 @@ random_u32(void)
 
 #define NEAR_TIMER_LIMIT 4
 
-#ifdef TIME_T_IS_64BIT
-#define TIME_INFINITY 0x7fffffffffffffff
-#else
-#ifdef TIME_T_IS_SIGNED
-#define TIME_INFINITY 0x7fffffff
-#else
-#define TIME_INFINITY 0xffffffff
-#endif
-#endif
-
 static list near_timers, far_timers;
 static bird_clock_t first_far_timer = TIME_INFINITY;
 
index afb2668a30416d304d5c8640c948bdf69525ed75..482f531cbe67df1136f2c81afb2623a6f10cceee 100644 (file)
@@ -36,4 +36,14 @@ bird_clock_t tm_parse_date(char *);  /* Convert date to bird_clock_t */
 void tm_format_date(char *, bird_clock_t);     /* Convert bird_clock_t to date */
 #define TM_DATE_BUFFER_SIZE 12         /* Buffer size required by tm_format_date */
 
+#ifdef TIME_T_IS_64BIT
+#define TIME_INFINITY 0x7fffffffffffffff
+#else
+#ifdef TIME_T_IS_SIGNED
+#define TIME_INFINITY 0x7fffffff
+#else
+#define TIME_INFINITY 0xffffffff
+#endif
+#endif
+
 #endif