frexpl: Update autoconf test.
[gnulib.git] / lib / poll.in.h
1 /* Header for poll(2) emulation
2    Contributed by Paolo Bonzini.
3
4    Copyright 2001-2003, 2007, 2009-2011 Free Software Foundation, Inc.
5
6    This file is part of gnulib.
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2, or (at your option)
11    any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License along
19    with this program; if not, write to the Free Software Foundation,
20    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
21
22 #ifndef _@GUARD_PREFIX@_POLL_H
23
24 #if __GNUC__ >= 3
25 @PRAGMA_SYSTEM_HEADER@
26 #endif
27 @PRAGMA_COLUMNS@
28
29 /* The include_next requires a split double-inclusion guard.  */
30 #if @HAVE_POLL_H@
31 # @INCLUDE_NEXT@ @NEXT_POLL_H@
32 #endif
33
34 #ifndef _@GUARD_PREFIX@_POLL_H
35 #define _@GUARD_PREFIX@_POLL_H
36
37
38 /* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */
39
40 /* The definition of _GL_WARN_ON_USE is copied here.  */
41
42
43 #if !@HAVE_POLL_H@
44
45 /* fake a poll(2) environment */
46 # define POLLIN      0x0001      /* any readable data available   */
47 # define POLLPRI     0x0002      /* OOB/Urgent readable data      */
48 # define POLLOUT     0x0004      /* file descriptor is writeable  */
49 # define POLLERR     0x0008      /* some poll error occurred      */
50 # define POLLHUP     0x0010      /* file descriptor was "hung up" */
51 # define POLLNVAL    0x0020      /* requested events "invalid"    */
52 # define POLLRDNORM  0x0040
53 # define POLLRDBAND  0x0080
54 # define POLLWRNORM  0x0100
55 # define POLLWRBAND  0x0200
56
57 # if !GNULIB_defined_poll_types
58
59 struct pollfd
60 {
61   int fd;                       /* which file descriptor to poll */
62   short events;                 /* events we are interested in   */
63   short revents;                /* events found on return        */
64 };
65
66 typedef unsigned long nfds_t;
67
68 #  define GNULIB_defined_poll_types 1
69 # endif
70
71 /* Define INFTIM only if doing so conforms to POSIX.  */
72 # if !defined (_POSIX_C_SOURCE) && !defined (_XOPEN_SOURCE)
73 #  define INFTIM (-1)
74 # endif
75
76 #endif
77
78
79 #if @GNULIB_POLL@
80 # if @REPLACE_POLL@
81 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
82 #   undef poll
83 #   define poll rpl_poll
84 #  endif
85 _GL_FUNCDECL_RPL (poll, int, (struct pollfd *pfd, nfds_t nfd, int timeout));
86 _GL_CXXALIAS_RPL (poll, int, (struct pollfd *pfd, nfds_t nfd, int timeout));
87 # else
88 #  if !@HAVE_POLL@
89 _GL_FUNCDECL_SYS (poll, int, (struct pollfd *pfd, nfds_t nfd, int timeout));
90 #  endif
91 _GL_CXXALIAS_SYS (poll, int, (struct pollfd *pfd, nfds_t nfd, int timeout));
92 # endif
93 _GL_CXXALIASWARN (poll);
94 #elif defined GNULIB_POSIXCHECK
95 # undef poll
96 # if HAVE_RAW_DECL_POLL
97 _GL_WARN_ON_USE (poll, "poll is unportable - "
98                  "use gnulib module poll for portability");
99 # endif
100 #endif
101
102
103 #endif /* _@GUARD_PREFIX@_POLL_H */
104 #endif /* _@GUARD_PREFIX@_POLL_H */