No
--
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 nod...@googlegroups.com
To unsubscribe from this group, send email to
nodejs+un...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en
That it works is purely accidental - Node is not fork safe.
fork() only forks the calling thread. Node processes file I/O and
other things in worker threads. If you fork() while one of the other
threads holds a crucial lock, you're dead.
No. libeio isn't fork-safe either.
If you really want to do it you'll probably have more luck using named
shared memory. See `man 7 shm_overview`. But don't expect anyone to
support it :-)