| 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; |
| 34 | } |
| 35 | private: |
| 36 | clockid_t m_id; |
| 37 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected