I recently was able to ascertain what was causing it, at least at a high level. I am using the socketstream module, which in turn uses the chokidar module. The latter is a wrapper around fs.watch and fs.watchFile. When I disable the socketstream feature that relied on that chokidar (live reloading of CSS), the problem no longer occurs. So I assume it's either a problem in that module, or a problem in fs.watch/watchFile.
Alex On Oct 24, 2012, at 8:14 AM, Karl Böhlmark <[email protected]> wrote: > I get this on node 0.8.12 after maybe 24-48 hours. I don't use any native > modules. Have you resolved your issue? > > On Wednesday, September 5, 2012 6:11:44 AM UTC+2, Alex Wolfe wrote: > I have an app that periodically exits with the "Abort Trap 6" message. > Sometimes the app will run for days without incident, and sometimes it dies > within 24 hours. > > When I ran it with gdb, I got the following: > > Program received signal SIGABRT, Aborted. > timer_cb (timer=0x100b2f1a8, status=0) at fs-poll.c:133 > 133 assert(ctx->parent_handle->poll_ctx == ctx); > (gdb) backtrace > #0 timer_cb (timer=0x100b2f1a8, status=0) at fs-poll.c:133 > #1 0x0000000100053284 in uv__run_timers (loop=0x1006703b0) at timer.c:131 > #2 0x0000000100044c55 in uv__run (loop=0x1006703b0) at core.c:254 > #3 0x0000000100044f0d in uv_run (loop=0x1006703b0) at core.c:265 > #4 0x000000010000855f in node::Start (argc=1606417040, argv=0x100b2f010) at > node.cc:2968 > #5 0x0000000100001794 in start () > Current language: auto; currently c > > Has anyone seen this before? > > -- > 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 -- 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
