Is it possible to check the javascript stack trace when node.js
goes in a segmentation error?
The current situation is as follows: I am running a script that has several nested async.eachSeries
that caused some strange reason a RangeError: Maximum call stack size exceeded
. Therefore, I increased the size of the stack with node --stack-size=1000000
, and I was left with a segmentation error.
Here is the source code of the script: http://nopaste.info/ca0c118591.html
Update
I also tried segfault-handler
, but for some incomprehensible reason, it did not catch my segfault.
fstab source share