returns time span in microseconds */
| 147 | |
| 148 | /* returns time span in microseconds */ |
| 149 | PTime UTIL_clockSpanMicro(UTIL_time_t clockStart ) |
| 150 | { |
| 151 | UTIL_time_t const clockEnd = UTIL_getTime(); |
| 152 | return UTIL_getSpanTimeMicro(clockStart, clockEnd); |
| 153 | } |
| 154 | |
| 155 | /* returns time span in microseconds */ |
| 156 | PTime UTIL_clockSpanNano(UTIL_time_t clockStart ) |
no test coverage detected