Browse Source

src: always initialize tracing controller in agent

PR-URL: https://github.com/nodejs/node/pull/10507
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
v7.x
Matt Loring 8 years ago
committed by Italo A. Casas
parent
commit
b89b2a7d36
No known key found for this signature in database GPG Key ID: 23EFEFE93C4CFFFE
  1. 2
      src/tracing/agent.h

2
src/tracing/agent.h

@ -22,7 +22,7 @@ class Agent {
uv_thread_t thread_;
uv_loop_t tracing_loop_;
v8::Platform* platform_ = nullptr;
TracingController* tracing_controller_;
TracingController* tracing_controller_ = nullptr;
};
} // namespace tracing

Loading…
Cancel
Save