Does the threads of a single process run in parallel on a multi-core machine on windows XP? Is the behavior same on different windows versions (windows server editions)
I have heard that only threads of different processes run in parallel.
Does the threads of a single process run in parallel on a multi-core machine on windows XP? Is the behavior same on different windows versions (windows server editions)
I have heard that only threads of different processes run in parallel.
Threads within the same process can still run in parallel on a multi-core machine. This should be the case for all editions of Windows capable of running .NET.
Where did you hear that only threads in different processes can run in parallel? Treat that source of information with a huge amount of salt in future (after checking that that's what they really said, and you didn't misunderstand).
Yes, they may run in parallel. Of course you can't count on any specific behavior wrt processor allocation and/or interleaving, since it depends on the whims of the scheduler and what else is running, etc. ...