On Tue, Apr 2, 2013 at 3:42 PM, hash88 <[email protected]> wrote: > I have a few questions: > > 1. Is it possible to get SIGSEGV with a reason in Javascript(my) code? I was > thinking V8 makes sure that memory of outside allocated area was not used. > 2. How to debug it? I have some file called "node.core" what I can do with > it? > 3. Or maybe it is possible that reason is in node version. I use Node > v0.8.20 (now updated to v0.8.22, v0.10 doesn't work with modules that I use) > > Please help!
Does your application use native add-ons, either directly or indirectly? `find node_modules/ -name \*.node` should tell you. You can inspect the core file in gdb: $ gdb /path/to/node node.core > apply thread all backtrace full If the output is all Greek to you, post it here. Make sure that /path/to/node is the one that generated the core file. If the binary doesn't match, the output will be bogus. -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
