When transferring 500 downloads in parallel with a c-ares enabled build only
[platform/upstream/curl.git] / lib / select.h
1 #ifndef __SELECT_H
2 #define __SELECT_H
3 /***************************************************************************
4  *                                  _   _ ____  _
5  *  Project                     ___| | | |  _ \| |
6  *                             / __| | | | |_) | |
7  *                            | (__| |_| |  _ <| |___
8  *                             \___|\___/|_| \_\_____|
9  *
10  * Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al.
11  *
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.
15  *
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.
19  *
20  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21  * KIND, either express or implied.
22  *
23  * $Id$
24  ***************************************************************************/
25
26 #include "setup.h"
27
28 #ifdef HAVE_SYS_POLL_H
29 #include <sys/poll.h>
30 #endif
31
32 /*
33  * poll() function on Windows Vista and later is called WSAPoll()
34  */
35
36 #if defined(USE_WINSOCK) && (USE_WINSOCK > 1) && \
37     defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0600)
38 #undef  HAVE_POLL
39 #define HAVE_POLL 1
40 #undef  HAVE_POLL_FINE
41 #define HAVE_POLL_FINE 1
42 #define poll(x,y,z) WSAPoll((x),(y),(z))
43 #endif
44
45 /*
46  * Definition of pollfd struct and constants for platforms lacking them.
47  */
48
49 #ifndef HAVE_POLL
50
51 #define POLLIN      0x01
52 #define POLLPRI     0x02
53 #define POLLOUT     0x04
54 #define POLLERR     0x08
55 #define POLLHUP     0x10
56 #define POLLNVAL    0x20
57
58 struct pollfd
59 {
60     curl_socket_t fd;
61     short   events;
62     short   revents;
63 };
64
65 #endif
66
67 #ifndef POLLRDNORM
68 #define POLLRDNORM POLLIN
69 #endif
70
71 #ifndef POLLWRNORM
72 #define POLLWRNORM POLLOUT
73 #endif
74
75 #ifndef POLLRDBAND
76 #define POLLRDBAND POLLPRI
77 #endif
78
79 int Curl_socket_ready(curl_socket_t readfd, curl_socket_t writefd,
80                       int timeout_ms);
81
82 int Curl_poll(struct pollfd ufds[], unsigned int nfds, int timeout_ms);
83
84 #ifdef TPF
85 int tpf_select_libcurl(int maxfds, fd_set* reads, fd_set* writes,
86                        fd_set* excepts, struct timeval* tv);
87 #endif
88
89 #endif /* __SELECT_H */