I've seen a number of questions / answers for subtracting two datetimes here but not one for adding or subtracting an interval to / from a timevalue.
Add milliseconds to timeval C++ This asnwer does not result in a valid timeval structure.
void addms2timeval(int microseconds, timeval tv); //prototype (doesn't exist yet)
...
struct timeval later;
gettimeofday(&later, NULL);
addms2timeval(1000, later);
//later is now 1000 us in the future.
Also doesn't seem to be part of the standard C libraries unless I missed it. https://pubs.opengroup.org/onlinepubs/007908775/xsh/systime.h.html https://www.gnu.org/software/libc/manual/html_node/Date-and-Time.html
Perhaps it's trivial, but it seems like one of those things that you can think you coded correctly but which then fails randomly every so often due to over / under flows.
Has anyone written and tested this?
I have a pair of files,
timeval_math.c
andtimeval_math.h
that probably show you how to do what you want.timeval_math.h
timeval_math.c
addms2timeval()
Clearly, you can write an
addms2timeval()
function, but it isn't clear to me how your interface (void addms2timeval(int microseconds, timeval tv);
returns the value. You should probably use one of these two interfaces:Assuming the latter, you can write:
The second argument to
add_timeval()
is a compound literal, a feature added to C99.This code may be used for any purpose. There is no warranty.