| 40 | } |
| 41 | |
| 42 | int srt::sync::clockSubsecondPrecision() |
| 43 | { |
| 44 | const int64_t ticks_per_sec = (srt::sync::steady_clock::period::den / srt::sync::steady_clock::period::num); |
| 45 | const int decimals = pow10<ticks_per_sec>(); |
| 46 | return decimals; |
| 47 | } |
| 48 | |
| 49 | //////////////////////////////////////////////////////////////////////////////// |
| 50 | // |
nothing calls this directly
no outgoing calls
no test coverage detected