blob: 36125ac0e1f7988977cea710df35e02437bd317c (
plain)
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
32
33
34
35
36
37
38
39
|
#ifndef SRC_NODE_WATCHDOG_H_
#define SRC_NODE_WATCHDOG_H_
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
#include "v8.h"
#include "uv.h"
namespace node {
class Watchdog {
public:
explicit Watchdog(v8::Isolate* isolate, uint64_t ms);
~Watchdog();
void Dispose();
v8::Isolate* isolate() { return isolate_; }
private:
void Destroy();
static void Run(void* arg);
static void Async(uv_async_t* async);
static void Timer(uv_timer_t* timer);
v8::Isolate* isolate_;
uv_thread_t thread_;
uv_loop_t* loop_;
uv_async_t async_;
uv_timer_t timer_;
bool destroyed_;
};
} // namespace node
#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
#endif // SRC_NODE_WATCHDOG_H_
|