Placate all the compilers. Ugly.
[beanstalkd.git] / util.c
blob0a15864d13eb97dd7d86d5ce0f6397bf6202fd21
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/>.
19 #include <errno.h>
20 #include <stdarg.h>
21 #include <stdio.h>
22 #include <string.h>
23 #include <unistd.h>
24 #include <sys/time.h>
26 #include "util.h"
28 char *progname; /* defined as extern in util.h */
30 void
31 v()
35 static void
36 vwarnx(const char *err, const char *fmt, va_list args)
38 fprintf(stderr, "%s: ", progname);
39 if (fmt) {
40 vfprintf(stderr, fmt, args);
41 if (err) fprintf(stderr, ": %s", strerror(errno));
43 fputc('\n', stderr);
46 void
47 warn(const char *fmt, ...)
49 va_list args;
50 va_start(args, fmt);
51 vwarnx(strerror(errno), fmt, args);
52 va_end(args);
55 void
56 warnx(const char *fmt, ...)
58 va_list args;
59 va_start(args, fmt);
60 vwarnx(NULL, fmt, args);
61 va_end(args);
64 usec
65 usec_from_timeval(struct timeval *tv)
67 return ((usec) tv->tv_sec) * SECOND + tv->tv_usec;
70 void
71 timeval_from_usec(struct timeval *tv, usec t)
73 tv->tv_sec = t / SECOND;
74 tv->tv_usec = t % SECOND;
77 usec
78 now_usec(void)
80 int r;
81 struct timeval tv;
83 r = gettimeofday(&tv, 0);
84 if (r != 0) return warnx("gettimeofday"), -1; // can't happen
86 return usec_from_timeval(&tv);