From 1d90b89bca58066016225d3ed721c167597a0ee5 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 28 Mar 2015 04:09:41 +0100 Subject: Issue #22117: Use the _PyTime_t API for time.clock_settime() Remove also the now unused _PyTime_AddDouble() function. --- Python/pytime.c | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'Python/pytime.c') diff --git a/Python/pytime.c b/Python/pytime.c index 27004f338c..0f05db424d 100644 --- a/Python/pytime.c +++ b/Python/pytime.c @@ -251,23 +251,6 @@ _PyTime_ObjectToTimeval(PyObject *obj, time_t *sec, long *usec, return _PyTime_ObjectToDenominator(obj, sec, usec, 1e6, round); } -void -_PyTime_AddDouble(_PyTime_timeval *tv, double interval, _PyTime_round_t round) -{ - _PyTime_timeval tv2; - double frac; - - frac = fmod(interval, 1.0); - interval = floor(interval); - tv2.tv_sec = (long)interval; - tv2.tv_usec = (long)(frac*1e6); - - tv->tv_sec += tv2.tv_sec; - tv->tv_usec += tv2.tv_usec; - tv->tv_sec += (time_t)(tv->tv_usec / SEC_TO_US); - tv->tv_usec %= SEC_TO_US; -} - /****************** NEW _PyTime_t API **********************/ static void -- cgit v1.2.1