Mercurial > dropbear
changeset 294:5686ee0a3338
put back the TIMEVAL_TO_TIMESPEC and timersub macros for Linux
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sat, 11 Mar 2006 14:57:12 +0000 |
parents | 55a99934db87 |
children | 03f65e461915 |
files | scpmisc.h |
diffstat | 1 files changed, 21 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/scpmisc.h Thu Mar 09 15:03:22 2006 +0000 +++ b/scpmisc.h Sat Mar 11 14:57:12 2006 +0000 @@ -46,3 +46,24 @@ char *ssh_get_progname(char *); void fatal(char* fmt,...); void sanitise_stdfd(void); + +/* Required for non-BSD platforms, from OpenSSH's defines.h */ +#ifndef timersub +#define timersub(a, b, result) \ + do { \ + (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \ + (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \ + if ((result)->tv_usec < 0) { \ + --(result)->tv_sec; \ + (result)->tv_usec += 1000000; \ + } \ + } while (0) +#endif + +#ifndef TIMEVAL_TO_TIMESPEC +#define TIMEVAL_TO_TIMESPEC(tv, ts) { \ + (ts)->tv_sec = (tv)->tv_sec; \ + (ts)->tv_nsec = (tv)->tv_usec * 1000; \ +} +#endif +