1 /* util.c - util functions */
3 /* Copyright (C) 2007 Keith Rarick and Philotic Inc.
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
28 char *progname
; /* defined as extern in util.h */
36 vwarnx(const char *err
, const char *fmt
, va_list args
)
38 fprintf(stderr
, "%s: ", progname
);
40 vfprintf(stderr
, fmt
, args
);
41 if (err
) fprintf(stderr
, ": %s", strerror(errno
));
47 warn(const char *fmt
, ...)
51 vwarnx(strerror(errno
), fmt
, args
);
56 warnx(const char *fmt
, ...)
60 vwarnx(NULL
, fmt
, args
);
65 usec_from_timeval(struct timeval
*tv
)
67 return ((usec
) tv
->tv_sec
) * SECOND
+ tv
->tv_usec
;
71 timeval_from_usec(struct timeval
*tv
, usec t
)
73 tv
->tv_sec
= t
/ SECOND
;
74 tv
->tv_usec
= t
% SECOND
;
83 r
= gettimeofday(&tv
, 0);
84 if (r
!= 0) return warnx("gettimeofday"), -1; // can't happen
86 return usec_from_timeval(&tv
);