| 598 | } |
| 599 | |
| 600 | inline uint64_t UInputController::now_ms() |
| 601 | { |
| 602 | timespec ts = { 0 }; |
| 603 | clock_gettime(CLOCK_MONOTONIC, &ts); |
| 604 | return static_cast<uint64_t>(ts.tv_sec) * UINT64_C(1000) + static_cast<uint64_t>(ts.tv_nsec) / UINT64_C(1'000'000); |
| 605 | } |
| 606 | |
| 607 | MAA_CTRL_UNIT_NS_END |
nothing calls this directly
no outgoing calls
no test coverage detected