Closed
Description
Commit ba4847e introduces a call to tracing::Agent::Stop()
in the SignalExit()
function.
Signal handlers are only allowed to call async-signal-safe functions, which the implementation of tracing::Agent::Stop()
is not. This can cause erratic behavior; crashes, hangs, etc.