diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-03-10 12:11:21 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-03-10 12:11:21 +0000 |
commit | dbaf4f93615b0ad1f34b38ec9def0b30496658d7 (patch) | |
tree | b9299f0d71a7593ffc31201f5955d3f59076b6f1 /lib/select.h | |
parent | 433575068c60d107beb566259f061a66e529b581 (diff) | |
download | curl-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.h | 3 |
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); |