summaryrefslogtreecommitdiff
path: root/lib/select.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2021-01-26 09:32:49 +0100
committerDaniel Stenberg <daniel@haxx.se>2021-01-27 09:05:31 +0100
commit32766cb4db0d71b06fe2a2d829e51e3404b65c24 (patch)
treec5fcbad28df4cde15f3f7852d13a1d69a9525889 /lib/select.h
parent5ad377718d0c585ec3e534d68fcfcc5abb74e1b1 (diff)
downloadcurl-32766cb4db0d71b06fe2a2d829e51e3404b65c24.tar.gz
select: convert Curl_select() to private static function
The old function should not be used anywhere anymore (the only remaining gskit use has to be fixed to instead use Curl_poll or none at all). The static function version is now called our_select() and is only built if necessary. Closes #6531
Diffstat (limited to 'lib/select.h')
-rw-r--r--lib/select.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/select.h b/lib/select.h
index 135095043..4db64877b 100644
--- a/lib/select.h
+++ b/lib/select.h
@@ -7,7 +7,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -72,12 +72,6 @@ struct pollfd
therefore defined here */
#define CURL_CSELECT_IN2 (CURL_CSELECT_ERR << 1)
-int Curl_select(curl_socket_t maxfd,
- fd_set *fds_read,
- fd_set *fds_write,
- fd_set *fds_err,
- timediff_t timeout_ms);
-
int Curl_socket_check(curl_socket_t readfd, curl_socket_t readfd2,
curl_socket_t writefd,
timediff_t timeout_ms);