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

Function sbttotv

freebsd/sys/time.h:332–340  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

330}
331
332static __inline struct timeval
333sbttotv(sbintime_t _sbt)
334{
335 struct timeval _tv;
336
337 _tv.tv_sec = _sbt >> 32;
338 _tv.tv_usec = sbttous((uint32_t)_sbt);
339 return (_tv);
340}
341
342static __inline sbintime_t
343tvtosbt(struct timeval _tv)

Callers 1

sogetoptFunction · 0.85

Calls 1

sbttousFunction · 0.85

Tested by

no test coverage detected