On Sat, Mar 17, 2012 at 02:04, Patrick Quinn <[email protected]> wrote: > No, it doesn't. I'm currently trying to find the problem by progressively > rebuilding the application. While I do that... is there anything in the > node.js runtime environment (no libraries) that could cause a program to > spend 10%-25% of its execution time in _chmod?
Not in node.js itself, the core itself doesn't touch files, it only reads them. Something you could try is to run your app through dtruss. It's a tool that logs syscalls, maybe it can tell what's getting chmod'ed. -- 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
