We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 601d2a1 commit 3be8293Copy full SHA for 3be8293
bindings/profilers/wall.cc
@@ -321,8 +321,9 @@ void SignalHandler::HandleProfilerSignal(int sig,
321
auto time_from = Now();
322
old_handler(sig, info, context);
323
auto time_to = Now();
324
- int64_t async_id =
325
- static_cast<int64_t>(node::AsyncHooksGetExecutionAsyncId(isolate));
+ int64_t async_id = -1;
+ // don't capture for now until we work out the issues with GC and thread start
326
+ // static_cast<int64_t>(node::AsyncHooksGetExecutionAsyncId(isolate));
327
prof->PushContext(time_from, time_to, cpu_time, async_id);
328
}
329
#else
0 commit comments