MCPcopy Create free account
hub / github.com/F-Stack/f-stack / timevalsub

Function timevalsub

freebsd/kern/kern_time.c:999–1006  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

997}
998
999void
1000timevalsub(struct timeval *t1, const struct timeval *t2)
1001{
1002
1003 t1->tv_sec -= t2->tv_sec;
1004 t1->tv_usec -= t2->tv_usec;
1005 timevalfix(t1);
1006}
1007
1008static void
1009timevalfix(struct timeval *t1)

Callers 15

acct_processFunction · 0.70
racct_proc_exitFunction · 0.70
racctdFunction · 0.70
settimeFunction · 0.70
kern_getitimerFunction · 0.70
kern_setitimerFunction · 0.70
ratecheckFunction · 0.70
tty_infoFunction · 0.70
sctp_handle_cookie_echoFunction · 0.50
sctp_calculate_rtoFunction · 0.50

Calls 1

timevalfixFunction · 0.70

Tested by

no test coverage detected