You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
Gateway is using nodejs and c# modules.
From time to time if I try to close gatewat I'm getting exception from node.cc
Bolded code throws exception:
Unhandled exception at 0x00007FF8F5016DF0 in IoTClient.exe: 0xC0000005: Access violation executing location 0x00007FF8F5016DF0.
if (instance_data->use_debug_agent())
EnableDebug(env);
{
SealHandleScope seal(isolate);
bool more;
node::node_loop_func loop_func = instance_data->loop_func();
do {
if(loop_func != NULL) {
loop_func(isolate);
}
**v8_platform.PumpMessageLoop(isolate);**
more = uv_run(env->event_loop(), UV_RUN_ONCE);
if (more == false) {
v8_platform.PumpMessageLoop(isolate);
EmitBeforeExit(env);
// Emit `beforeExit` if the loop became alive either after emitting
// event, or after running some callbacks.
more = uv_loop_alive(env->event_loop());
if (uv_run(env->event_loop(), UV_RUN_NOWAIT) != 0)
more = true;
}
} while (more == true);
}
The text was updated successfully, but these errors were encountered:
I'm creating gateway from c# using those function
Gateway is using nodejs and c# modules.
From time to time if I try to close gatewat I'm getting exception from node.cc
Bolded code throws exception:
Unhandled exception at 0x00007FF8F5016DF0 in IoTClient.exe: 0xC0000005: Access violation executing location 0x00007FF8F5016DF0.
The text was updated successfully, but these errors were encountered: