| 68 | Tracer::Tracer() : _output{}, _numTraces{0}, _lock{}, _lastAllocatedID(0) {} |
| 69 | |
| 70 | int64_t Tracer::getCurrentThreadTrackID() const { |
| 71 | const TrackReference* pTrack = TrackReference::current(); |
| 72 | return pTrack->getTracingID(); |
| 73 | } |
| 74 | |
| 75 | void Tracer::writeAsyncEvent( |
| 76 | const char* category, |
no test coverage detected