]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gnulib/import/gettimeofday.c
Move gnulib to top level
[thirdparty/binutils-gdb.git] / gnulib / import / gettimeofday.c
CommitLineData
4a626d0a
PA
1/* Provide gettimeofday for systems that don't have it or for which it's broken.
2
5e8754f9 3 Copyright (C) 2001-2003, 2005-2007, 2009-2016 Free Software Foundation, Inc.
4a626d0a
PA
4
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, or (at your option)
8 any later version.
9
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.
14
15 You should have received a copy of the GNU General Public License
5e8754f9 16 along with this program; if not, see <http://www.gnu.org/licenses/>. */
4a626d0a
PA
17
18/* written by Jim Meyering */
19
20#include <config.h>
21
22/* Specification. */
23#include <sys/time.h>
24
25#include <time.h>
26
5e8754f9
SDJ
27#if HAVE_SYS_TIMEB_H
28# include <sys/timeb.h>
4a626d0a
PA
29#endif
30
5e8754f9 31#if GETTIMEOFDAY_CLOBBERS_LOCALTIME || TZSET_CLOBBERS_LOCALTIME
4a626d0a 32
5e8754f9
SDJ
33/* Work around the bug in some systems whereby gettimeofday clobbers
34 the static buffer that localtime uses for its return value. The
35 gettimeofday function from Mac OS X 10.0.4 (i.e., Darwin 1.3.7) has
36 this problem. The tzset replacement is necessary for at least
37 Solaris 2.5, 2.5.1, and 2.6. */
38
39static struct tm tm_zero_buffer;
40static struct tm *localtime_buffer_addr = &tm_zero_buffer;
4a626d0a 41
5e8754f9
SDJ
42# undef localtime
43extern struct tm *localtime (time_t const *);
4a626d0a 44
5e8754f9
SDJ
45# undef gmtime
46extern struct tm *gmtime (time_t const *);
4a626d0a 47
5e8754f9
SDJ
48/* This is a wrapper for localtime. It is used only on systems for which
49 gettimeofday clobbers the static buffer used for localtime's result.
50
51 On the first call, record the address of the static buffer that
52 localtime uses for its result. */
53
54struct tm *
55rpl_localtime (time_t const *timep)
4a626d0a 56{
5e8754f9
SDJ
57 struct tm *tm = localtime (timep);
58
59 if (localtime_buffer_addr == &tm_zero_buffer)
60 localtime_buffer_addr = tm;
61
62 return tm;
63}
64
65/* Same as above, since gmtime and localtime use the same buffer. */
66struct tm *
67rpl_gmtime (time_t const *timep)
68{
69 struct tm *tm = gmtime (timep);
70
71 if (localtime_buffer_addr == &tm_zero_buffer)
72 localtime_buffer_addr = tm;
73
74 return tm;
4a626d0a
PA
75}
76
5e8754f9
SDJ
77#endif /* GETTIMEOFDAY_CLOBBERS_LOCALTIME || TZSET_CLOBBERS_LOCALTIME */
78
79#if TZSET_CLOBBERS_LOCALTIME
80
81# undef tzset
82extern void tzset (void);
83
84/* This is a wrapper for tzset, for systems on which tzset may clobber
85 the static buffer used for localtime's result. */
86void
87rpl_tzset (void)
88{
89 /* Save and restore the contents of the buffer used for localtime's
90 result around the call to tzset. */
91 struct tm save = *localtime_buffer_addr;
92 tzset ();
93 *localtime_buffer_addr = save;
94}
4a626d0a
PA
95#endif
96
97/* This is a wrapper for gettimeofday. It is used only on systems
98 that lack this function, or whose implementation of this function
5e8754f9 99 causes problems. */
4a626d0a
PA
100
101int
102gettimeofday (struct timeval *restrict tv, void *restrict tz)
103{
104#undef gettimeofday
5e8754f9
SDJ
105#if HAVE_GETTIMEOFDAY
106# if GETTIMEOFDAY_CLOBBERS_LOCALTIME
4a626d0a
PA
107 /* Save and restore the contents of the buffer used for localtime's
108 result around the call to gettimeofday. */
109 struct tm save = *localtime_buffer_addr;
5e8754f9 110# endif
4a626d0a 111
5e8754f9
SDJ
112# if defined timeval /* 'struct timeval' overridden by gnulib? */
113# undef timeval
4a626d0a
PA
114 struct timeval otv;
115 int result = gettimeofday (&otv, (struct timezone *) tz);
116 if (result == 0)
117 {
118 tv->tv_sec = otv.tv_sec;
119 tv->tv_usec = otv.tv_usec;
120 }
5e8754f9 121# else
4a626d0a 122 int result = gettimeofday (tv, (struct timezone *) tz);
5e8754f9 123# endif
4a626d0a 124
5e8754f9 125# if GETTIMEOFDAY_CLOBBERS_LOCALTIME
4a626d0a 126 *localtime_buffer_addr = save;
5e8754f9 127# endif
4a626d0a
PA
128
129 return result;
130
5e8754f9
SDJ
131#else
132
133# if HAVE__FTIME
134
135 struct _timeb timebuf;
136 _ftime (&timebuf);
137 tv->tv_sec = timebuf.time;
138 tv->tv_usec = timebuf.millitm * 1000;
139
4a626d0a
PA
140# else
141
142# if !defined OK_TO_USE_1S_CLOCK
143# error "Only 1-second nominal clock resolution found. Is that intended?" \
144 "If so, compile with the -DOK_TO_USE_1S_CLOCK option."
145# endif
146 tv->tv_sec = time (NULL);
147 tv->tv_usec = 0;
148
5e8754f9
SDJ
149# endif
150
4a626d0a
PA
151 return 0;
152
153#endif
154}