Possible Duplicate:
How do I spawn threads on different CPU cores?
I am using C#. I want to write the program using the threading concept. I just want to know how to run the threads in different processors. Here I attach my partial code:
Thread t1 = new Thread(threadJobA);
Thread t2 = new Thread(threadJobB);
t1.Start();
t2.Start();