annotate lib/sys_time.in.h @ 40057:b06060465f09

maint: Run 'make update-copyright'
author Paul Eggert <eggert@cs.ucla.edu>
date Tue, 01 Jan 2019 00:25:11 +0100
parents 10eb9086bea0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9268
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 /* Provide a more complete sys/time.h.
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2
40057
b06060465f09 maint: Run 'make update-copyright'
Paul Eggert <eggert@cs.ucla.edu>
parents: 19484
diff changeset
3 Copyright (C) 2007-2019 Free Software Foundation, Inc.
9268
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5 This program is free software; you can redistribute it and/or modify
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6 it under the terms of the GNU General Public License as published by
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7 the Free Software Foundation; either version 2, or (at your option)
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8 any later version.
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10 This program is distributed in the hope that it will be useful,
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
13 GNU General Public License for more details.
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
15 You should have received a copy of the GNU General Public License
19190
9759915b2aca all: prefer https: URLs
Paul Eggert <eggert@cs.ucla.edu>
parents: 18626
diff changeset
16 along with this program; if not, see <https://www.gnu.org/licenses/>. */
9268
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
17
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
18 /* Written by Paul Eggert. */
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
19
17303
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
20 #ifndef _@GUARD_PREFIX@_SYS_TIME_H
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
21
10655
8668b19a7032 Avoid gcc warnings because of #pragma GCC system_header on older gcc.
Bruno Haible <bruno@clisp.org>
parents: 10375
diff changeset
22 #if __GNUC__ >= 3
10375
f96e845fc36d Avoid some "gcc -pedantic" warnings.
Bruno Haible <bruno@clisp.org>
parents: 9268
diff changeset
23 @PRAGMA_SYSTEM_HEADER@
10655
8668b19a7032 Avoid gcc warnings because of #pragma GCC system_header on older gcc.
Bruno Haible <bruno@clisp.org>
parents: 10375
diff changeset
24 #endif
13761
a19ace3ba849 Avoid line length limitation from HP NonStop system header files.
Bruno Haible <bruno@clisp.org>
parents: 13479
diff changeset
25 @PRAGMA_COLUMNS@
10375
f96e845fc36d Avoid some "gcc -pedantic" warnings.
Bruno Haible <bruno@clisp.org>
parents: 9268
diff changeset
26
17454
a2d511609297 sys_time: port to OpenBSD
Paul Eggert <eggert@cs.ucla.edu>
parents: 17363
diff changeset
27 /* On Cygwin and on many BSDish systems, <sys/time.h> includes itself
a2d511609297 sys_time: port to OpenBSD
Paul Eggert <eggert@cs.ucla.edu>
parents: 17363
diff changeset
28 recursively via <sys/select.h>.
17363
5a51fb7777a9 sys_select, sys_time: port 2013-01-30 Solaris 2.6 fix to Cygwin
Paul Eggert <eggert@cs.ucla.edu>
parents: 17303
diff changeset
29 Simply delegate to the system's header in this case; it is a no-op.
5a51fb7777a9 sys_select, sys_time: port 2013-01-30 Solaris 2.6 fix to Cygwin
Paul Eggert <eggert@cs.ucla.edu>
parents: 17303
diff changeset
30 Without this extra ifdef, the C++ gettimeofday declaration below
5a51fb7777a9 sys_select, sys_time: port 2013-01-30 Solaris 2.6 fix to Cygwin
Paul Eggert <eggert@cs.ucla.edu>
parents: 17303
diff changeset
31 would be a forward declaration in gnulib's nested <sys/time.h>. */
17454
a2d511609297 sys_time: port to OpenBSD
Paul Eggert <eggert@cs.ucla.edu>
parents: 17363
diff changeset
32 #if defined _CYGWIN_SYS_TIME_H || defined _SYS_TIME_H || defined _SYS_TIME_H_
17363
5a51fb7777a9 sys_select, sys_time: port 2013-01-30 Solaris 2.6 fix to Cygwin
Paul Eggert <eggert@cs.ucla.edu>
parents: 17303
diff changeset
33 # @INCLUDE_NEXT@ @NEXT_SYS_TIME_H@
5a51fb7777a9 sys_select, sys_time: port 2013-01-30 Solaris 2.6 fix to Cygwin
Paul Eggert <eggert@cs.ucla.edu>
parents: 17303
diff changeset
34 #else
5a51fb7777a9 sys_select, sys_time: port 2013-01-30 Solaris 2.6 fix to Cygwin
Paul Eggert <eggert@cs.ucla.edu>
parents: 17303
diff changeset
35
17303
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
36 /* The include_next requires a split double-inclusion guard. */
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
37 #if @HAVE_SYS_TIME_H@
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
38 # @INCLUDE_NEXT@ @NEXT_SYS_TIME_H@
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
39 #endif
9268
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
40
17303
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
41 #ifndef _@GUARD_PREFIX@_SYS_TIME_H
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
42 #define _@GUARD_PREFIX@_SYS_TIME_H
9268
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
43
17303
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
44 #if ! @HAVE_SYS_TIME_H@
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
45 # include <time.h>
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
46 #endif
9268
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
47
16327
588e064cc6e1 sys_time: Override 'struct timeval' on some native Windows platforms.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
48 /* On native Windows with MSVC, get the 'struct timeval' type.
588e064cc6e1 sys_time: Override 'struct timeval' on some native Windows platforms.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
49 Also, on native Windows with a 64-bit time_t, where we are overriding the
588e064cc6e1 sys_time: Override 'struct timeval' on some native Windows platforms.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
50 'struct timeval' type, get all declarations of system functions whose
588e064cc6e1 sys_time: Override 'struct timeval' on some native Windows platforms.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
51 signature contains 'struct timeval'. */
17303
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
52 #if (defined _MSC_VER || @REPLACE_STRUCT_TIMEVAL@) && @HAVE_WINSOCK2_H@ && !defined _GL_INCLUDING_WINSOCK2_H
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
53 # define _GL_INCLUDING_WINSOCK2_H
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
54 # include <winsock2.h>
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
55 # undef _GL_INCLUDING_WINSOCK2_H
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
56 #endif
15613
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
57
12947
c2b20f3765ff sys_time: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents: 12888
diff changeset
58 /* The definitions of _GL_FUNCDECL_RPL etc. are copied here. */
c2b20f3765ff sys_time: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents: 12888
diff changeset
59
12422
f7842310a565 New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents: 10842
diff changeset
60 /* The definition of _GL_ARG_NONNULL is copied here. */
f7842310a565 New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents: 10842
diff changeset
61
12844
aaa284caae61 sys_time: use link-warning
Eric Blake <ebb9@byu.net>
parents: 12559
diff changeset
62 /* The definition of _GL_WARN_ON_USE is copied here. */
aaa284caae61 sys_time: use link-warning
Eric Blake <ebb9@byu.net>
parents: 12559
diff changeset
63
17303
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
64 #ifdef __cplusplus
10842
4a02c5d90eaf sys_time: Add extern "C" block for C++.
Simon Josefsson <simon@josefsson.org>
parents: 10655
diff changeset
65 extern "C" {
17303
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
66 #endif
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
67
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
68 #if !@HAVE_STRUCT_TIMEVAL@ || @REPLACE_STRUCT_TIMEVAL@
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
69
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
70 # if @REPLACE_STRUCT_TIMEVAL@
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
71 # define timeval rpl_timeval
12947
c2b20f3765ff sys_time: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents: 12888
diff changeset
72 # endif
10842
4a02c5d90eaf sys_time: Add extern "C" block for C++.
Simon Josefsson <simon@josefsson.org>
parents: 10655
diff changeset
73
17303
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
74 # if !GNULIB_defined_struct_timeval
9268
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
75 struct timeval
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
76 {
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
77 time_t tv_sec;
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
78 long int tv_usec;
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
79 };
17303
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
80 # define GNULIB_defined_struct_timeval 1
9268
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
81 # endif
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
82
17303
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
83 #endif
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
84
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
85 #ifdef __cplusplus
12947
c2b20f3765ff sys_time: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents: 12888
diff changeset
86 }
17303
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
87 #endif
12947
c2b20f3765ff sys_time: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents: 12888
diff changeset
88
17303
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
89 #if @GNULIB_GETTIMEOFDAY@
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
90 # if @REPLACE_GETTIMEOFDAY@
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
91 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
92 # undef gettimeofday
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
93 # define gettimeofday rpl_gettimeofday
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
94 # endif
12947
c2b20f3765ff sys_time: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents: 12888
diff changeset
95 _GL_FUNCDECL_RPL (gettimeofday, int,
c2b20f3765ff sys_time: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents: 12888
diff changeset
96 (struct timeval *restrict, void *restrict)
c2b20f3765ff sys_time: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents: 12888
diff changeset
97 _GL_ARG_NONNULL ((1)));
c2b20f3765ff sys_time: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents: 12888
diff changeset
98 _GL_CXXALIAS_RPL (gettimeofday, int,
c2b20f3765ff sys_time: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents: 12888
diff changeset
99 (struct timeval *restrict, void *restrict));
17303
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
100 # else
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
101 # if !@HAVE_GETTIMEOFDAY@
12947
c2b20f3765ff sys_time: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents: 12888
diff changeset
102 _GL_FUNCDECL_SYS (gettimeofday, int,
c2b20f3765ff sys_time: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents: 12888
diff changeset
103 (struct timeval *restrict, void *restrict)
c2b20f3765ff sys_time: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents: 12888
diff changeset
104 _GL_ARG_NONNULL ((1)));
17303
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
105 # endif
12947
c2b20f3765ff sys_time: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents: 12888
diff changeset
106 /* Need to cast, because on glibc systems, by default, the second argument is
c2b20f3765ff sys_time: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents: 12888
diff changeset
107 struct timezone *. */
c2b20f3765ff sys_time: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents: 12888
diff changeset
108 _GL_CXXALIAS_SYS_CAST (gettimeofday, int,
c2b20f3765ff sys_time: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents: 12888
diff changeset
109 (struct timeval *restrict, void *restrict));
17303
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
110 # endif
12947
c2b20f3765ff sys_time: Avoid #define replacements in C++ mode.
Bruno Haible <bruno@clisp.org>
parents: 12888
diff changeset
111 _GL_CXXALIASWARN (gettimeofday);
18507
6f0acde098a8 sys_time: add gnulib::timeval for C++
Pedro Alves <palves@redhat.com>
parents: 18189
diff changeset
112 # if defined __cplusplus && defined GNULIB_NAMESPACE
6f0acde098a8 sys_time: add gnulib::timeval for C++
Pedro Alves <palves@redhat.com>
parents: 18189
diff changeset
113 namespace GNULIB_NAMESPACE {
6f0acde098a8 sys_time: add gnulib::timeval for C++
Pedro Alves <palves@redhat.com>
parents: 18189
diff changeset
114 typedef ::timeval
6f0acde098a8 sys_time: add gnulib::timeval for C++
Pedro Alves <palves@redhat.com>
parents: 18189
diff changeset
115 #undef timeval
6f0acde098a8 sys_time: add gnulib::timeval for C++
Pedro Alves <palves@redhat.com>
parents: 18189
diff changeset
116 timeval;
6f0acde098a8 sys_time: add gnulib::timeval for C++
Pedro Alves <palves@redhat.com>
parents: 18189
diff changeset
117 }
6f0acde098a8 sys_time: add gnulib::timeval for C++
Pedro Alves <palves@redhat.com>
parents: 18189
diff changeset
118 # endif
17303
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
119 #elif defined GNULIB_POSIXCHECK
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
120 # undef gettimeofday
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
121 # if HAVE_RAW_DECL_GETTIMEOFDAY
12844
aaa284caae61 sys_time: use link-warning
Eric Blake <ebb9@byu.net>
parents: 12559
diff changeset
122 _GL_WARN_ON_USE (gettimeofday, "gettimeofday is unportable - "
13479
8a0b8adde2be Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 13099
diff changeset
123 "use gnulib module gettimeofday for portability");
9268
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
124 # endif
17303
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
125 #endif
9268
a553c18c572d Rename sys_time_.h to sys_time.in.h.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
126
15613
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
127 /* Hide some function declarations from <winsock2.h>. */
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
128
17303
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
129 #if defined _MSC_VER && @HAVE_WINSOCK2_H@
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
130 # if !defined _@GUARD_PREFIX@_UNISTD_H
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
131 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
132 # undef close
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
133 # define close close_used_without_including_unistd_h
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
134 # else
15613
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
135 _GL_WARN_ON_USE (close,
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
136 "close() used without including <unistd.h>");
17303
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
137 # endif
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
138 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
139 # undef gethostname
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
140 # define gethostname gethostname_used_without_including_unistd_h
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
141 # else
15613
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
142 _GL_WARN_ON_USE (gethostname,
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
143 "gethostname() used without including <unistd.h>");
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
144 # endif
17303
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
145 # endif
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
146 # if !defined _@GUARD_PREFIX@_SYS_SOCKET_H
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
147 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
148 # undef socket
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
149 # define socket socket_used_without_including_sys_socket_h
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
150 # undef connect
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
151 # define connect connect_used_without_including_sys_socket_h
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
152 # undef accept
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
153 # define accept accept_used_without_including_sys_socket_h
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
154 # undef bind
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
155 # define bind bind_used_without_including_sys_socket_h
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
156 # undef getpeername
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
157 # define getpeername getpeername_used_without_including_sys_socket_h
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
158 # undef getsockname
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
159 # define getsockname getsockname_used_without_including_sys_socket_h
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
160 # undef getsockopt
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
161 # define getsockopt getsockopt_used_without_including_sys_socket_h
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
162 # undef listen
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
163 # define listen listen_used_without_including_sys_socket_h
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
164 # undef recv
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
165 # define recv recv_used_without_including_sys_socket_h
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
166 # undef send
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
167 # define send send_used_without_including_sys_socket_h
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
168 # undef recvfrom
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
169 # define recvfrom recvfrom_used_without_including_sys_socket_h
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
170 # undef sendto
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
171 # define sendto sendto_used_without_including_sys_socket_h
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
172 # undef setsockopt
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
173 # define setsockopt setsockopt_used_without_including_sys_socket_h
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
174 # undef shutdown
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
175 # define shutdown shutdown_used_without_including_sys_socket_h
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
176 # else
15613
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
177 _GL_WARN_ON_USE (socket,
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
178 "socket() used without including <sys/socket.h>");
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
179 _GL_WARN_ON_USE (connect,
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
180 "connect() used without including <sys/socket.h>");
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
181 _GL_WARN_ON_USE (accept,
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
182 "accept() used without including <sys/socket.h>");
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
183 _GL_WARN_ON_USE (bind,
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
184 "bind() used without including <sys/socket.h>");
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
185 _GL_WARN_ON_USE (getpeername,
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
186 "getpeername() used without including <sys/socket.h>");
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
187 _GL_WARN_ON_USE (getsockname,
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
188 "getsockname() used without including <sys/socket.h>");
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
189 _GL_WARN_ON_USE (getsockopt,
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
190 "getsockopt() used without including <sys/socket.h>");
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
191 _GL_WARN_ON_USE (listen,
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
192 "listen() used without including <sys/socket.h>");
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
193 _GL_WARN_ON_USE (recv,
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
194 "recv() used without including <sys/socket.h>");
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
195 _GL_WARN_ON_USE (send,
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
196 "send() used without including <sys/socket.h>");
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
197 _GL_WARN_ON_USE (recvfrom,
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
198 "recvfrom() used without including <sys/socket.h>");
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
199 _GL_WARN_ON_USE (sendto,
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
200 "sendto() used without including <sys/socket.h>");
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
201 _GL_WARN_ON_USE (setsockopt,
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
202 "setsockopt() used without including <sys/socket.h>");
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
203 _GL_WARN_ON_USE (shutdown,
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
204 "shutdown() used without including <sys/socket.h>");
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
205 # endif
17303
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
206 # endif
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
207 # if !defined _@GUARD_PREFIX@_SYS_SELECT_H
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
208 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
209 # undef select
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
210 # define select select_used_without_including_sys_select_h
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
211 # else
15613
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
212 _GL_WARN_ON_USE (select,
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
213 "select() used without including <sys/select.h>");
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
214 # endif
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
215 # endif
17303
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
216 #endif
15613
e819b881a9e2 sys_time: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
217
14840
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14274
diff changeset
218 #endif /* _@GUARD_PREFIX@_SYS_TIME_H */
17363
5a51fb7777a9 sys_select, sys_time: port 2013-01-30 Solaris 2.6 fix to Cygwin
Paul Eggert <eggert@cs.ucla.edu>
parents: 17303
diff changeset
219 #endif /* _CYGWIN_SYS_TIME_H */
17303
0e38241a3d05 sys_time: port to Solaris 2.6
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
220 #endif /* _@GUARD_PREFIX@_SYS_TIME_H */