ddopson / node-segfault-handler

Tool for debugging native Node.js modules and getting stack traces when things go wrong.
BSD 3-Clause "New" or "Revised" License
319 stars 74 forks source link

Node 13.x uses SIGSEGV, new API available #63

Open devsnek opened 5 years ago

devsnek commented 5 years ago

In node 13.x and forward you'll need to use node::RegisterSignalHandler to avoid breaking node internals. see https://github.com/nodejs/node/commit/70c7686df50870ac48e85855fbc0d0854d02cd68 for more details.

kneth commented 5 years ago

Thanks for the pointer!