mirror of
https://github.com/python/cpython.git
synced 2025-10-17 20:28:43 +00:00
Issue #22117: Replace usage of _PyTime_ROUND_UP with _PyTime_ROUND_CEILING
All these functions only accept positive timeouts, so this change has no effect in practice.
This commit is contained in:
parent
bcdd777d3c
commit
869e1778c0
6 changed files with 22 additions and 18 deletions
|
@ -633,7 +633,7 @@ internal_select_ex(PySocketSockObject *s, int writing, _PyTime_t interval)
|
|||
pollfd.events = writing ? POLLOUT : POLLIN;
|
||||
|
||||
/* s->sock_timeout is in seconds, timeout in ms */
|
||||
timeout = _PyTime_AsMilliseconds(interval, _PyTime_ROUND_UP);
|
||||
timeout = _PyTime_AsMilliseconds(interval, _PyTime_ROUND_CEILING);
|
||||
assert(timeout <= INT_MAX);
|
||||
timeout_int = (int)timeout;
|
||||
|
||||
|
@ -641,7 +641,7 @@ internal_select_ex(PySocketSockObject *s, int writing, _PyTime_t interval)
|
|||
n = poll(&pollfd, 1, timeout_int);
|
||||
Py_END_ALLOW_THREADS;
|
||||
#else
|
||||
_PyTime_AsTimeval_noraise(interval, &tv, _PyTime_ROUND_UP);
|
||||
_PyTime_AsTimeval_noraise(interval, &tv, _PyTime_ROUND_CEILING);
|
||||
|
||||
FD_ZERO(&fds);
|
||||
FD_SET(s->sock_fd, &fds);
|
||||
|
@ -2191,7 +2191,8 @@ socket_parse_timeout(_PyTime_t *timeout, PyObject *timeout_obj)
|
|||
return 0;
|
||||
}
|
||||
|
||||
if (_PyTime_FromSecondsObject(timeout, timeout_obj, _PyTime_ROUND_UP) < 0)
|
||||
if (_PyTime_FromSecondsObject(timeout,
|
||||
timeout_obj, _PyTime_ROUND_CEILING) < 0)
|
||||
return -1;
|
||||
|
||||
if (*timeout < 0) {
|
||||
|
@ -2200,10 +2201,10 @@ socket_parse_timeout(_PyTime_t *timeout, PyObject *timeout_obj)
|
|||
}
|
||||
|
||||
#ifdef MS_WINDOWS
|
||||
overflow = (_PyTime_AsTimeval(timeout, &tv, _PyTime_ROUND_UP) < 0);
|
||||
overflow = (_PyTime_AsTimeval(timeout, &tv, _PyTime_ROUND_CEILING) < 0);
|
||||
#endif
|
||||
#ifndef HAVE_POLL
|
||||
timeout = _PyTime_AsMilliseconds(timeout, _PyTime_ROUND_UP);
|
||||
timeout = _PyTime_AsMilliseconds(timeout, _PyTime_ROUND_CEILING);
|
||||
overflow = (timeout > INT_MAX);
|
||||
#endif
|
||||
if (overflow) {
|
||||
|
@ -2452,7 +2453,7 @@ internal_connect(PySocketSockObject *s, struct sockaddr *addr, int addrlen,
|
|||
struct timeval tv;
|
||||
int conv;
|
||||
|
||||
_PyTime_AsTimeval_noraise(s->sock_timeout, &tv, _PyTime_ROUND_UP);
|
||||
_PyTime_AsTimeval_noraise(s->sock_timeout, &tv, _PyTime_ROUND_CEILING);
|
||||
|
||||
Py_BEGIN_ALLOW_THREADS
|
||||
FD_ZERO(&fds);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue