Tagged Questions
1
vote
2answers
196 views
Obtaining thread Core affinity in C++ 11 through pthreads
I'm trying to set core affinity (Thread #1 goes on first core, Thread #2 goes on second core, ...) while using std::thread in C++ 11.
I've already searched around various topics and on the internet ...
0
votes
1answer
114 views
error: undefined reference to `sched_setaffinity' on windows xp
Basically the code below was intended for use on linux and maybe thats the reason I get the error because I'm using windows XP, but I figure that pthreads should work just as well on both machines. ...
7
votes
2answers
283 views
What could cause my program to not use all cores after a while?
I have written a program that captures and displays video from three video cards. For every frame I spawn a thread that compresses the frame to Jpeg and then puts it in queue for writing to disk. I ...
5
votes
2answers
5k views
What is the difference between pthread_self() and gettid()? Which one should I use?
I'm trying to set the CPU affinity of threads on Linux. I'd like to know which one of the following approaches is recommended:
Get thread id using pthread_self()
Set CPU affinity using ...
0
votes
1answer
2k views
Is it possible to set pthread CPU affinity in OS X?
In Linux there is a sched_setaffinity() function defined in sched.h, but I can't seem to find anything like that in Mac OS X 10.6 pthreads implementation... If it is not possible to set affinity, what ...
1
vote
1answer
477 views
if I do sched_setaffinity in a process, do the threads spawned by it get affected
If I do this : CreateThreads, setsched_affinity to CPU 0, then will all the threads also have affinity to CPU 0
If instead I reverse the sequence of action i.e. set_schedaffinity first and then create ...