Return Type | Function name | Arguments |
---|---|---|
unsigned long | RealtimeMicro | (void) |
Declared in file: hzDate.h
Defined in file : hzDate.cpp
Function Logic:
Function body:
unsigned long RealtimeMicro (void) { struct timeval tv ; uint64_t usecs ; gettimeofday(&tv, 0); usecs = tv.tv_sec ; usecs *= 1000000; usecs += tv.tv_usec ; return usecs ; }