Searched refs:pending_ms (Results 1 – 2 of 2) sorted by relevance
236 int pending_ms; in wait_ms() local251 pending_ms = timeout_ms; in wait_ms()256 r = poll(NULL, 0, pending_ms); in wait_ms()258 pending_tv.tv_sec = pending_ms / 1000; in wait_ms()259 pending_tv.tv_usec = (pending_ms % 1000) * 1000; in wait_ms()267 pending_ms = timeout_ms - (int)timediff(tvnow(), initial_tv); in wait_ms()268 if(pending_ms <= 0) in wait_ms()
271 int pending_ms; in Curl_poll() local308 pending_ms = (int)timeout_ms; in Curl_poll()310 pending_ms = -1; in Curl_poll()312 pending_ms = 0; in Curl_poll()313 r = poll(ufds, nfds, pending_ms); in Curl_poll()
Completed in 6 milliseconds