On a UNIX AIX server if I start multiple copies of the same process will memory be allocated for the code, data and stack for each copy of the process ?

link|improve this question
feedback

1 Answer

Yes, if the process is not designed to work with multiple copies of itself. There are programs which recognize that they're already running and share objects. Completely isolated programs will all run for themselves.

What program are we talking about?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown