I'd like to specify the cpu-affinity of a particular pthread. All the references I've found so far deal with setting the cpu-affinity of a process (pid_t) not a thread (pthread_t). I tried some experiments passing pthread_t's around and as expected they fail. Am I trying to do something impossible? If not, can you send a pointer please? Thanks a million.
|
Assuming linux: The interface to setting the affinity is - as you've probably already discovered:
Passing 0 as the pid, and it'll apply to the current thread only, or have other thread report their kernel pid with the linux specific call pid_t gettid(void); and pass that in as the pid. Quoting the man page
|
|||
|
|
|
I have done a pthread program where i cheack the prime in range from 1 20000. I divided it 2 Thread like 1 .. 10000 & 10001 .. 20000. These two range are runing on to my 2 cpu by
You can see my code on my blog |
|||||||||
|
|
Please find the below example program to cpu-affinity of a particular pthread. Please add appropriate libs.
Compile above program with -D_GNU_SOURCE flag. |
|||||
|
|
This is a wrapper I've made to make my life easier. Its effect is that the calling thread gets "stuck" to the core with id
|
|||||
|