Sync usage with man page.
[netbsd-mini2440.git] / external / bsd / ntp / dist / lib / isc / unix / stdtime.c
blob057ef2486b1133212d2f31143b78dc76aad7c522
1 /* $NetBSD$ */
3 /*
4 * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC")
5 * Copyright (C) 1999-2001 Internet Software Consortium.
7 * Permission to use, copy, modify, and/or distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
12 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
13 * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
14 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
15 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
16 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17 * PERFORMANCE OF THIS SOFTWARE.
20 /* Id: stdtime.c,v 1.19 2007/06/19 23:47:18 tbox Exp */
22 /*! \file */
24 #include <config.h>
26 #include <stddef.h> /* NULL */
27 #include <stdlib.h> /* NULL */
28 #include <syslog.h>
30 #include <sys/time.h>
32 #include <isc/stdtime.h>
33 #include <isc/util.h>
35 #ifndef ISC_FIX_TV_USEC
36 #define ISC_FIX_TV_USEC 1
37 #endif
39 #define US_PER_S 1000000
41 #if ISC_FIX_TV_USEC
42 static inline void
43 fix_tv_usec(struct timeval *tv) {
44 isc_boolean_t fixed = ISC_FALSE;
46 if (tv->tv_usec < 0) {
47 fixed = ISC_TRUE;
48 do {
49 tv->tv_sec -= 1;
50 tv->tv_usec += US_PER_S;
51 } while (tv->tv_usec < 0);
52 } else if (tv->tv_usec >= US_PER_S) {
53 fixed = ISC_TRUE;
54 do {
55 tv->tv_sec += 1;
56 tv->tv_usec -= US_PER_S;
57 } while (tv->tv_usec >=US_PER_S);
60 * Call syslog directly as we are called from the logging functions.
62 if (fixed)
63 (void)syslog(LOG_ERR, "gettimeofday returned bad tv_usec: corrected");
65 #endif
67 void
68 isc_stdtime_get(isc_stdtime_t *t) {
69 struct timeval tv;
72 * Set 't' to the number of seconds since 00:00:00 UTC, January 1,
73 * 1970.
76 REQUIRE(t != NULL);
78 RUNTIME_CHECK(gettimeofday(&tv, NULL) != -1);
80 #if ISC_FIX_TV_USEC
81 fix_tv_usec(&tv);
82 INSIST(tv.tv_usec >= 0);
83 #else
84 INSIST(tv.tv_usec >= 0 && tv.tv_usec < US_PER_S);
85 #endif
87 *t = (unsigned int)tv.tv_sec;