Update.
[shishi.git] / gl / gettimeofday.c
blobb6d68657e680d2275d9e7d290aede91ac06f6d69
1 /* Provide gettimeofday for systems that don't have it or for which it's broken.
3 Copyright (C) 2001, 2002, 2003, 2005, 2006, 2007 Free Software
4 Foundation, Inc.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software Foundation,
18 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
20 /* written by Jim Meyering */
22 #include <config.h>
24 /* Specification. */
25 #include <sys/time.h>
27 #include <time.h>
29 #if HAVE_SYS_TIMEB_H
30 # include <sys/timeb.h>
31 #endif
33 #if GETTIMEOFDAY_CLOBBERS_LOCALTIME || TZSET_CLOBBERS_LOCALTIME
35 /* Work around the bug in some systems whereby gettimeofday clobbers
36 the static buffer that localtime uses for its return value. The
37 gettimeofday function from Mac OS X 10.0.4 (i.e., Darwin 1.3.7) has
38 this problem. The tzset replacement is necessary for at least
39 Solaris 2.5, 2.5.1, and 2.6. */
41 static struct tm tm_zero_buffer;
42 static struct tm *localtime_buffer_addr = &tm_zero_buffer;
44 /* This is a wrapper for localtime. It is used only on systems for which
45 gettimeofday clobbers the static buffer used for localtime's result.
47 On the first call, record the address of the static buffer that
48 localtime uses for its result. */
50 struct tm *
51 localtime (time_t const *timep)
53 #undef localtime
54 extern struct tm *localtime (time_t const *);
55 struct tm *tm = localtime (timep);
57 if (localtime_buffer_addr == &tm_zero_buffer)
58 localtime_buffer_addr = tm;
60 return tm;
63 /* Same as above, since gmtime and localtime use the same buffer. */
64 struct tm *
65 gmtime (time_t const *timep)
67 #undef gmtime
68 extern struct tm *gmtime (time_t const *);
69 struct tm *tm = gmtime (timep);
71 if (localtime_buffer_addr == &tm_zero_buffer)
72 localtime_buffer_addr = tm;
74 return tm;
77 #endif /* GETTIMEOFDAY_CLOBBERS_LOCALTIME || TZSET_CLOBBERS_LOCALTIME */
79 #if TZSET_CLOBBERS_LOCALTIME
80 /* This is a wrapper for tzset, for systems on which tzset may clobber
81 the static buffer used for localtime's result. */
82 void
83 tzset (void)
85 #undef tzset
86 extern void tzset (void);
88 /* Save and restore the contents of the buffer used for localtime's
89 result around the call to tzset. */
90 struct tm save = *localtime_buffer_addr;
91 tzset ();
92 *localtime_buffer_addr = save;
94 #endif
96 /* This is a wrapper for gettimeofday. It is used only on systems
97 that lack this function, or whose implementation of this function
98 causes problems. */
101 rpl_gettimeofday (struct timeval *restrict tv, void *restrict tz)
103 #undef gettimeofday
104 #if HAVE_GETTIMEOFDAY
105 extern int gettimeofday (/* unspecified arguments */);
107 # if GETTIMEOFDAY_CLOBBERS_LOCALTIME
108 /* Save and restore the contents of the buffer used for localtime's
109 result around the call to gettimeofday. */
110 struct tm save = *localtime_buffer_addr;
111 # endif
113 int result = gettimeofday (tv, tz);
115 # if GETTIMEOFDAY_CLOBBERS_LOCALTIME
116 *localtime_buffer_addr = save;
117 # endif
119 return result;
121 #else
123 # if HAVE__FTIME
125 struct _timeb timebuf;
126 _ftime (&timebuf);
127 tv->tv_sec = timebuf.time;
128 tv->tv_usec = timebuf.millitm * 1000;
130 # else
132 # if !defined OK_TO_USE_1S_CLOCK
133 # error "Only 1-second nominal clock resolution found. Is that intended?" \
134 "If so, compile with the -DOK_TO_USE_1S_CLOCK option."
135 # endif
136 tv->tv_sec = time (NULL);
137 tv->tv_usec = 0;
139 # endif
141 return 0;
143 #endif