Mac memory management

0

Mac OS X 10.6

When multiple users logon and launch some applications at the same time, say Photoshop or Adobe Creative Suite 5. Will Mac OS utilize memory smart enough by letting both instance of applications using same chunk of memory? Thanks.

Stan

Posted 2010-08-02T00:17:37.160

Reputation: 6 535

You mean utilize memory dumb enough. It's not smart to let users share memory. – Josh K – 2010-08-02T00:52:36.687

Answers

2

In general, no. When two different users launch a program, they must run as two different processes owned by the individual users. To share memory between these two instances could easily become a security breach as one user could change the memory being used by another user.

In theory the superuser could get around this, but apps must be written not to assume superuser privileges unless there's an explicit need for them.

Stephen Jennings

Posted 2010-08-02T00:17:37.160

Reputation: 21 788