| 629 | } |
| 630 | |
| 631 | ULONG StopNamedTraceSession(wchar_t const* sessionName) |
| 632 | { |
| 633 | TraceProperties sessionProps = {}; |
| 634 | sessionProps.Wnode.BufferSize = (ULONG) sizeof(TraceProperties); |
| 635 | sessionProps.LoggerNameOffset = offsetof(TraceProperties, mSessionName); |
| 636 | return ControlTraceW((TRACEHANDLE) 0, sessionName, &sessionProps, EVENT_TRACE_CONTROL_STOP); |
| 637 | } |
| 638 | |
| 639 | double PMTraceSession::TimestampDeltaToMilliSeconds(uint64_t timestampDelta) const |
| 640 | { |
no outgoing calls
no test coverage detected