File tree 1 file changed +8
-6
lines changed
1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change 100
100
// Forward-declare libuv loop
101
101
struct uv_loop_s ;
102
102
103
- // Forward-declare TracingController, used by CreatePlatform.
104
- namespace v8 {
105
- class TracingController ;
106
- }
107
-
108
103
// Forward-declare these functions now to stop MSVS from becoming
109
104
// terminally confused when it's done in node_internals.h
110
105
namespace node {
111
106
107
+ namespace tracing {
108
+
109
+ class TracingController ;
110
+
111
+ }
112
+
112
113
NODE_EXTERN v8::Local<v8::Value> ErrnoException (v8::Isolate* isolate,
113
114
int errorno,
114
115
const char * syscall = nullptr ,
@@ -298,7 +299,8 @@ NODE_EXTERN MultiIsolatePlatform* GetMainThreadMultiIsolatePlatform();
298
299
299
300
NODE_EXTERN MultiIsolatePlatform* CreatePlatform (
300
301
int thread_pool_size,
301
- v8::TracingController* tracing_controller);
302
+ node::tracing::TracingController* tracing_controller);
303
+ MultiIsolatePlatform* InitializeV8Platform (int thread_pool_size);
302
304
NODE_EXTERN void FreePlatform (MultiIsolatePlatform* platform);
303
305
304
306
NODE_EXTERN void EmitBeforeExit (Environment* env);
You can’t perform that action at this time.
0 commit comments