forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagent.h
More file actions
31 lines (24 loc) · 663 Bytes
/
agent.h
File metadata and controls
31 lines (24 loc) · 663 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef SRC_TRACING_AGENT_H_
#define SRC_TRACING_AGENT_H_
#include "tracing/node_trace_buffer.h"
#include "tracing/node_trace_writer.h"
#include "uv.h"
#include "v8.h"
namespace node {
namespace tracing {
class Agent {
public:
explicit Agent();
void Start(v8::Platform* platform, const std::string& enabled_categories);
void Stop();
private:
bool IsStarted() { return platform_ != nullptr; }
static void ThreadCb(void* arg);
uv_thread_t thread_;
uv_loop_t tracing_loop_;
v8::Platform* platform_ = nullptr;
TracingController* tracing_controller_ = nullptr;
};
} // namespace tracing
} // namespace node
#endif // SRC_TRACING_AGENT_H_