======================== EventImpl ======================== */
| 1070 | |
| 1071 | /* ======================== EventImpl ======================== */ |
| 1072 | double CpuCompNode::CpuDispatchableBase::EventImpl::do_elapsed_time_until( |
| 1073 | EventImplHelper& end) { |
| 1074 | auto&& f1 = static_cast<EventImpl&>(end).m_prev_finish_time; |
| 1075 | return m_prev_finish_time.time_until_secs(f1); |
| 1076 | } |
| 1077 | |
| 1078 | #if MGB_HAVE_THREAD |
| 1079 | void CpuCompNode::CpuDispatchableBase::EventImpl::do_device_wait_by(Impl* cn_impl) { |
nothing calls this directly
no test coverage detected