diff options
author | Martin Mares <mj@ucw.cz> | 1999-11-30 14:01:39 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-11-30 14:01:39 +0000 |
commit | 487d1afa523706d8b0caec63492f4a2b6cef3bce (patch) | |
tree | f44ce3fe89ab4bc521dc99362a93625e6a00536c /sysdep/unix/timer.h | |
parent | 0d3e6bceeeec4ebf007e02374f799cd1fb21f20c (diff) |
Moved TIME_INFINITY to timer.h, so that it's publicly available.
Diffstat (limited to 'sysdep/unix/timer.h')
-rw-r--r-- | sysdep/unix/timer.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sysdep/unix/timer.h b/sysdep/unix/timer.h index afb2668a..482f531c 100644 --- a/sysdep/unix/timer.h +++ b/sysdep/unix/timer.h @@ -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 |