Hi,
I am trying to pause execution of nodejs (8.5.1) application (i.e c++ app using embedded node platform) from chrome (version 73) inspector. It is seen, after pause button is pressed, no notification is sent from nodejs inspector to chrome.
i.e from code, below Runtime_Interrupt is not invoked and so it is not happening. Please clarify the way to do this.
RUNTIME_FUNCTION(Runtime_Interrupt) {
SealHandleScope shs(isolate);
DCHECK_EQ(0, args.length());
return isolate->stack_guard()->HandleInterrupts();
}
Thanks.
Regards,
Madan