| 26 | return MicroSeconds() / 1000; |
| 27 | } |
| 28 | virtual int64_t Seconds() { |
| 29 | return MicroSeconds() / 1000000; |
| 30 | } |
| 31 | virtual bool Set(int64_t microseconds) { |
| 32 | timespec ts = {microseconds / 1000000, microseconds % 1000000 * 1000}; |
| 33 | return clock_settime(m_id, &ts) == 0; |
nothing calls this directly
no outgoing calls
no test coverage detected