026a35 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | |
06983f | 1996-09-22 | Fredrik Hübinette (Hubbe) | | ||| This file a part of Pike, and is copyright by Fredrik Hubinette
||| Pike is distributed as GPL (General Public License)
|
026a35 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | ||| See the files COPYING and DISCLAIMER for more information.
\*/
#ifndef TIME_STUFF_H
#define TIME_STUFF_H
#include "machine.h"
#if TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
#else
# if HAVE_SYS_TIME_H
# include <sys/time.h>
# else
# if HAVE_TIME_H
# include <time.h>
# endif
# endif
#endif
#undef HAVE_SYS_TIME_H
#undef HAVE_TIME_H
#undef TIME_WITH_SYS_TIME
#define my_timercmp(tvp, cmp, uvp) \
|
0cdad2 | 1996-07-01 | Fredrik Hübinette (Hubbe) | | ( (tvp)->tv_sec == (uvp)->tv_sec ? \
(tvp)->tv_usec cmp (uvp)->tv_usec : \
(tvp)->tv_sec cmp (uvp)->tv_sec )
|
026a35 | 1996-06-21 | Fredrik Hübinette (Hubbe) | |
#define my_subtract_timeval(X, Y) \
do { \
struct timeval *_a=(X), *_b=(Y); \
_a->tv_sec -= _b->tv_sec; \
|
0cdad2 | 1996-07-01 | Fredrik Hübinette (Hubbe) | | _a->tv_usec -= _b->tv_usec; \
if(_a->tv_usec < 0) { \
_a->tv_sec--; \
_a->tv_usec+=1000000; \
|
026a35 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | } \
} while(0)
#define my_add_timeval(X, Y) \
do { \
struct timeval *_a=(X), *_b=(Y); \
_a->tv_sec += _b->tv_sec; \
|
0cdad2 | 1996-07-01 | Fredrik Hübinette (Hubbe) | | _a->tv_usec += _b->tv_usec; \
if(_a->tv_usec >= 1000000) { \
_a->tv_sec++; \
_a->tv_usec-=1000000; \
|
026a35 | 1996-06-21 | Fredrik Hübinette (Hubbe) | | } \
} while(0)
#ifndef HAVE_STRUCT_TIMEVAL
struct timeval
{
long tv_sec;
long tv_usec;
};
#endif
#endif
|