Searched defs:timeout (Results 226 - 227 of 227) sorted by relevance

12345678910

/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp4389 // os::sleep() is implemented with either poll (NULL,0,timeout) or
4495 // timeout
6243 // millis is the relative timeout time
6244 // abstime will be the absolute timeout time
6442 * of "now + 100,000,000". This places a limit on the timeout of about 3.17
6739 // prepared to restart the system call after updating the timeout, unless
6740 // a poll() is done with timeout == -1, in which case we repeat with this
6743 int os::timeout(int fd, long timeout) { argument
6756 INTERRUPTIBLE_NORESTART(::poll(&pfd, 1, timeout), re
[all...]
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp4710 // If we encounter a nearly simultanous timeout expiry and unpark()
5012 int os::timeout(int fd, long timeout) { argument
5016 t.tv_sec = timeout / 1000;
5017 t.tv_usec = (timeout % 1000) * 1000;

Completed in 69 milliseconds

12345678910