What is difference between Thread Affinity and Process affinity ?
- by DotNetBeginner
What is difference between Thread Affinity and Process affinity ?
If I have two Threads and I have duel core machine then is it possible to run these two threads parallely on the two cores ?
If I use processor affinity Mask then I can control execution of a process on the cores but when I have to run threads on a particular core how can I make these threads core specific ?
A very simple example will be appreciated.