summaryrefslogtreecommitdiff
path: root/lib/select.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-03-10 12:11:21 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-03-10 12:11:21 +0000
commitdbaf4f93615b0ad1f34b38ec9def0b30496658d7 (patch)
treeb9299f0d71a7593ffc31201f5955d3f59076b6f1 /lib/select.h
parent433575068c60d107beb566259f061a66e529b581 (diff)
downloadcurl-dbaf4f93615b0ad1f34b38ec9def0b30496658d7.tar.gz
- Bryan Henderson introduces two things:
1) the progress callback gets called more frequently (at times) 2) libcurl *might* call the callback when it receives a signal
Diffstat (limited to 'lib/select.h')
-rw-r--r--lib/select.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/select.h b/lib/select.h
index e0844b1d6..0941db6df 100644
--- a/lib/select.h
+++ b/lib/select.h
@@ -51,6 +51,9 @@ struct pollfd
#define CSELECT_OUT 0x02
#define CSELECT_ERR 0x04
+int Curl_pselect(curl_socket_t readfd, curl_socket_t writefd, int timeout_ms,
+ sigset_t * sigmask);
+
int Curl_select(curl_socket_t readfd, curl_socket_t writefd, int timeout_ms);
int Curl_poll(struct pollfd ufds[], unsigned int nfds, int timeout_ms);