mirror of
https://github.com/curl/curl.git
synced 2026-06-01 19:24:16 +03:00
TPF: drop support
There has been no TPF related changes done since September 2010 (commit
7e1a45e224) and since this is a platform that is relatively different
than many others (== needs attention), I draw the conclusion that this
build is broken since a long time.
Closes #8378
This commit is contained in:
parent
5ad5007eba
commit
da15443ddd
14 changed files with 12 additions and 968 deletions
20
lib/select.c
20
lib/select.c
|
|
@ -441,23 +441,3 @@ int Curl_poll(struct pollfd ufds[], unsigned int nfds, timediff_t timeout_ms)
|
|||
|
||||
return r;
|
||||
}
|
||||
|
||||
#ifdef TPF
|
||||
/*
|
||||
* This is a replacement for select() on the TPF platform.
|
||||
* It is used whenever libcurl calls select().
|
||||
* The call below to tpf_process_signals() is required because
|
||||
* TPF's select calls are not signal interruptible.
|
||||
*
|
||||
* Return values are the same as select's.
|
||||
*/
|
||||
int tpf_select_libcurl(int maxfds, fd_set *reads, fd_set *writes,
|
||||
fd_set *excepts, struct timeval *tv)
|
||||
{
|
||||
int rc;
|
||||
|
||||
rc = tpf_select_bsd(maxfds, reads, writes, excepts, tv);
|
||||
tpf_process_signals();
|
||||
return rc;
|
||||
}
|
||||
#endif /* TPF */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue