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
Hi,
I'm trying to use this package for my nodejs project running on an armv7 device with node v8.9.4.
I was amazed that it worked right away, without any problems. I can easily read events from /dev/input following the examples.
However I have one problem, when I close the node script (ctrl+c), my script itself stops working and I can even catch the SIGINT even telling it to stop, however after pressing ctrl+c, I cannot type anything into the terminal (nor press CTRL+C) anymore, it's stuck. The only way to stop is to execute killall -9 node and it frees the terminal.
It's caused solely by using new InputEvent('/dev/input/event0');, if I comment this line, it's not freezing anymore.
What can be the cause of this? Is there any way to fix it?
The text was updated successfully, but these errors were encountered:
I can confirm this bug(?). Even a process.exit() hangs. Somehow this is caused by the fs.createReadStream() that's not properly cleaned, even though .close() is called in inputEvent.close().
My workaround, sending a SIGTERM to myself on exit:
process.on('exit', () => {
// Workaround for the process not terminating on process.exit() due to input-event
// calling fs.createReadStream() (which, for unknown reason, prevents exit).
process.kill(process.pid, 'SIGTERM');
});
Hi,
I'm trying to use this package for my nodejs project running on an armv7 device with node v8.9.4.
I was amazed that it worked right away, without any problems. I can easily read events from /dev/input following the examples.
However I have one problem, when I close the node script (ctrl+c), my script itself stops working and I can even catch the SIGINT even telling it to stop, however after pressing ctrl+c, I cannot type anything into the terminal (nor press CTRL+C) anymore, it's stuck. The only way to stop is to execute
killall -9 node
and it frees the terminal.It's caused solely by using
new InputEvent('/dev/input/event0');
, if I comment this line, it's not freezing anymore.What can be the cause of this? Is there any way to fix it?
The text was updated successfully, but these errors were encountered: