MCPcopy Create free account
hub / github.com/apache/trafficserver / delta_timeval

Function delta_timeval

tools/http_load/http_load.c:2963–2969  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2961}
2962
2963static long long
2964delta_timeval(struct timeval *start, struct timeval *finish)
2965{
2966 long long delta_secs = finish->tv_sec - start->tv_sec;
2967 long long delta_usecs = finish->tv_usec - start->tv_usec;
2968 return delta_secs * (long long)1000000L + delta_usecs;
2969}
2970
2971static void *
2972malloc_check(size_t size)

Callers 4

handle_readFunction · 0.85
close_connectionFunction · 0.85
progress_reportFunction · 0.85
finishFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected