MCPcopy Create free account
hub / github.com/Hamlib/Hamlib / _pthread_time_in_ms_from_timespec

Function _pthread_time_in_ms_from_timespec

include/hamlib/winpthreads.h:487–493  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

485}
486
487static unsigned long long _pthread_time_in_ms_from_timespec(const struct timespec *ts)
488{
489 unsigned long long t = ts->tv_sec * 1000;
490 t += ts->tv_nsec / 1000000;
491
492 return t;
493}
494
495static unsigned long long _pthread_rel_time_in_ms(const struct timespec *ts)
496{

Callers 4

_pthread_rel_time_in_msFunction · 0.85
pthread_mutex_timedlockFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected