assign application to thread

Associate
Joined
9 May 2007
Posts
827
is there any way to manually set a application to run on a specific thread?

i basically want to be able to run a certain program multiple times on each core/thread. any way to manually set them to do this?
 
Last edited:
Set the processes affinity to the CPU/Core you want through Taskmanager. Some software supports a flag you can set to do this automatically.

There is also a utility to run a program on a chosen core, thought its name escapes me.
 
C:\Windows\system32>start /?
Starts a separate window to run a specified program or command.

START ["title"] [/D path] [/I] [/MIN] [/MAX] [/SEPARATE | /SHARED]
[/LOW | /NORMAL | /HIGH | /REALTIME | /ABOVENORMAL | /BELOWNORMAL]
[/AFFINITY <hex affinity>] [/WAIT] [/B] [command/program]
[parameters]
 
Back
Top Bottom