Hello,
I get a segfault with node when running this script (after a few minutes) https://gist.github.com/neumino/8307741 That's what the script does: 1/ Create some connections to the database 2/ Drop and recreate a table 3/ Insert documents 4/ Close all the connections 5/ Go to 1 I end up with a segfault. Running gdb, this is what I get https://gist.github.com/neumino/8307741/#comment-982099 So it looks like I'm missing some symbols, but node's symbols should be loaded since I get ``` Reading symbols from /usr/local/bin/node...done. ``` I can reproduce this segfault on Archlinux and Ubuntu 13.10 with node v0.10.24. I also tried to build node in debug mode (and with symbols) but I still get the same backtrace (with `??` and an attempt to read 0x0000000000000000 -- it takes more time to get the segfault though). The library `rethinkdb` uses node-protobuf (a node addon) -- https://github.com/fuwaneko/node-protobuf So I though the problem could come from there, but even when building node-protobuf in debug mode with symbols, I still get the same backtrace. Does someone has an idea how to get a better backtrace? Thanks! Michel -- -- 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.
