| 134 | #else |
| 135 | |
| 136 | inline MicrosecondsInt64 GetClockTimeMicros(clockid_t clock) { |
| 137 | timespec ts; |
| 138 | clock_gettime(clock, &ts); |
| 139 | return ts.tv_sec * MICROS_PER_SEC + ts.tv_nsec / NANOS_PER_MICRO; |
| 140 | } |
| 141 | |
| 142 | #endif // defined(__APPLE__) |
| 143 |
no outgoing calls
no test coverage detected