T
ti
Hello,
I'd like to know about how to run specific thread on specific CPU.
I know I can use ProcessThread.ProcessorAffinity.
But I can't understand that how I can map my Thread object to
ProcessThread-Class.
---
ThreadStart ts = new ThreadStart(myThread);
Thread th = new Thread(ts);
th.Start();
---
In this case, how I can map th to ProcessThread.
Could you provide me sample code?
//Best Regards,
//to.iijima
I'd like to know about how to run specific thread on specific CPU.
I know I can use ProcessThread.ProcessorAffinity.
But I can't understand that how I can map my Thread object to
ProcessThread-Class.
---
ThreadStart ts = new ThreadStart(myThread);
Thread th = new Thread(ts);
th.Start();
---
In this case, how I can map th to ProcessThread.
Could you provide me sample code?
//Best Regards,
//to.iijima