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

Function _pthread_time_in_ms

include/hamlib/winpthreads.h:478–485  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

476}
477
478static unsigned long long _pthread_time_in_ms(void)
479{
480 struct __timeb64 tb;
481
482 _ftime64_s(&tb);
483
484 return tb.time * 1000 + tb.millitm;
485}
486
487static unsigned long long _pthread_time_in_ms_from_timespec(const struct timespec *ts)
488{

Callers 4

_pthread_rel_time_in_msFunction · 0.85
pthread_mutex_timedlockFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected