| 529 | { |
| 530 | #if defined(CONF_FAMILY_UNIX) |
| 531 | struct timeval val; |
| 532 | gettimeofday(&val, NULL); |
| 533 | return (int64)val.tv_sec*(int64)1000000+(int64)val.tv_usec; |
| 534 | #elif defined(CONF_FAMILY_WINDOWS) |
nothing calls this directly
no outgoing calls
no test coverage detected