3 /***************************************************************************
5 * Project ___| | | | _ \| |
7 * | (__| |_| | _ <| |___
8 * \___|\___/|_| \_\_____|
10 * Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al.
12 * This software is licensed as described in the file COPYING, which
13 * you should have received as part of this distribution. The terms
14 * are also available at http://curl.haxx.se/docs/copyright.html.
16 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
17 * copies of the Software, and permit persons to whom the Software is
18 * furnished to do so, under the terms of the COPYING file.
20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21 * KIND, either express or implied.
23 * $Id: select.h,v 1.1.1.1 2008-09-23 16:32:05 hoffman Exp $
24 ***************************************************************************/
28 #ifdef HAVE_SYS_POLL_H
30 #elif defined(HAVE_POLL_H)
35 * poll() function on Windows Vista and later is called WSAPoll()
38 #if defined(USE_WINSOCK) && (USE_WINSOCK > 1) && \
39 defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0600)
42 # undef HAVE_POLL_FINE
43 # define HAVE_POLL_FINE 1
44 # define poll(x,y,z) WSAPoll((x),(y),(z))
45 # if defined(_MSC_VER) && defined(POLLRDNORM)
47 # define POLLPRI POLLRDBAND
48 # define HAVE_STRUCT_POLLFD 1
53 * Definition of pollfd struct and constants for platforms lacking them.
56 #if !defined(HAVE_STRUCT_POLLFD) && \
57 !defined(HAVE_SYS_POLL_H) && \
77 #define POLLRDNORM POLLIN
81 #define POLLWRNORM POLLOUT
85 #define POLLRDBAND POLLPRI
88 int Curl_socket_ready(curl_socket_t readfd
, curl_socket_t writefd
,
91 int Curl_poll(struct pollfd ufds
[], unsigned int nfds
, int timeout_ms
);
94 int tpf_select_libcurl(int maxfds
, fd_set
* reads
, fd_set
* writes
,
95 fd_set
* excepts
, struct timeval
* tv
);
98 #endif /* __SELECT_H */