in reply to The Singleton design pattern and fork();

No - as others have pointed out, data is not being shared between the parent and child. However, you can use threads to get around that problem, and even if you don't want to or can't for some reason, shared memory is not *that* scary really (even though a thread-based programming model will probably still be much nicer).

--
mowgli

  • Comment on Re: The Singleton design pattern and fork();