| 218 | } |
| 219 | |
| 220 | ISC_UINT64 curTime() |
| 221 | { |
| 222 | double rc = fb_utils::query_performance_counter(); |
| 223 | rc *= 1000000; |
| 224 | rc /= fb_utils::query_performance_frequency(); |
| 225 | return ISC_UINT64(rc); |
| 226 | } |
| 227 | |
| 228 | TimerEntry* getTimer(ITimer* timer) |
| 229 | { |
no test coverage detected