| 28 | } |
| 29 | |
| 30 | ProcessIoCounter::IOCounter ProcessIoCounter::GetTotal() |
| 31 | { |
| 32 | return IOCounter{ |
| 33 | .read = m_counterCur->ReadTransferCount, |
| 34 | .write = m_counterCur->WriteTransferCount |
| 35 | }; |
| 36 | } |
| 37 | |
| 38 | ProcessIoCounter::IOCounter& ProcessIoCounter::IOCounter::operator+=(IOCounter rhs) |
| 39 | { |
nothing calls this directly
no outgoing calls
no test coverage detected