G
Guest
I create new thread as following:
Thread mThread = new Thread(new ThreadStart(m_ClassThread.Go));
How can I choose where to run this thread ?
In my system I have 2 Process devices ,(CPU0 and CPU1) , I want to create 3
Thread 2 of those thread to run in CPU0 and the last one in CPU1 , is there
any way to control threads execution ? How can I ask for execution specific
thread in specific CPU?
"Using WMI I can receive the CPUs deviceID in my system". But I don't know
how to control....
Thread mThread = new Thread(new ThreadStart(m_ClassThread.Go));
How can I choose where to run this thread ?
In my system I have 2 Process devices ,(CPU0 and CPU1) , I want to create 3
Thread 2 of those thread to run in CPU0 and the last one in CPU1 , is there
any way to control threads execution ? How can I ask for execution specific
thread in specific CPU?
"Using WMI I can receive the CPUs deviceID in my system". But I don't know
how to control....