Windows and Mac OS X processes

process

Do Windows and Mac OS X have processes? If so, are they different from each other?

Best Answer

All modern operating systems (yes, including Windows) have processes. The Windows and Linux implementations do differ - for example, on Linux separate processes (fork()/exec()) are used more often, and Windows prefers threads of a single process. Mac OS X is based on BSD, so its processes are the same as in any other BSD (or Linux).