Home | Info | Community | Development | myReactOS | Contact Us
[inline, static]
Definition at line 31 of file tvarith.h.
Referenced by adns__query_send(), adns__tcp_tryconnect(), main(), query_usetcp(), and tcp_events().
{ struct timeval tmp; assert(ms>=0); tmp= *tv_io; tmp.tv_usec += (ms%1000)*1000; tmp.tv_sec += ms/1000; if (tmp.tv_usec >= 1000000) { tmp.tv_sec++; tmp.tv_usec -= 1000000; } *tv_io= tmp; }