The setthreadaffinitymask tag has no wiki summary.
0
votes
2answers
161 views
Obtain LWP id from a pthread_t on Solaris to use with processor_bind
On Solaris, processor_bind is used to set affinity for threads. You need to know the LWPID of the target thread or use the constant P_MYID to refer to yourself.
I have a function that looks like ...
2
votes
1answer
70 views
Process affinity in Windows Phone
I WP library project, I am trying to bind the heavy-lifting process to the hardware thread (0 or 1). So the app consuming the library use other available core.
Can we set process affinity in Windows ...
1
vote
1answer
178 views
Windows.h thread affinity
The code below does compile and run except that the output is not what I expect it to be. I wanted the program to create n-number of threads (depending on the number of multicores available) and run a ...
0
votes
1answer
91 views
limit the number of cores used by MySQL [closed]
On Linux, can you ensure that MySQL leaves one core free?
(We have a small Python server that can become unresponsive when MySQL running on the same box is under load.)
2
votes
1answer
659 views
Windows SetThreadAffinityMask has no effect
I have written a small test program in which I try to use the Windows API call SetThreadAffinityMask to lock the thread to a single NUMA node. I retrieve the CPU bitmask of a node with the ...
2
votes
1answer
240 views
Pthread_setaffinity_np invalid argument
I am trying to change the affinity of each thread inside the start routine.
Here's the code. In the below code, 't' is the argument passed through the pthread_create function.
cpu_set_t mask;
...
0
votes
0answers
76 views
way to fake having more processors to a Windows program (IE enable affinity for 4 cores->4 tasks/threads when you only have 2)? VM emulators? [closed]
I am interested in the performance impact. I have some theories about a program's optimization that I want to confirm. When scaling from 3 to 5 cores, performance doesn't improve any, nor does CPU ...
1
vote
2answers
313 views
SethreadAffinityMask() correct usage?
I have 1500 threads..I want them to run on 12 processors...
To do that I call
SetThreadAffinityMask(GetCurrentThread(),1<<(threadnum%numprocessors)); where numprocessors=12.
Is that correct ...
4
votes
1answer
450 views
Why does NextValue call of performanceCounter change thread affinity mask
I have a C# project, where I have to both access the current workload of my processor, and ensure, that I run some specific code on every kernel of the processor. My problem is, that accessing the ...
1
vote
1answer
476 views
pthreads_setaffinity_np: Invalid argument?
I've managed to get my pthreads program sort of working. Basically I am trying to manually set the affinity of 4 threads such that thread 1 runs on CPU 1, thread 2 runs on CPU 2, thread 3 runs on CPU ...
29
votes
6answers
8k views
Java thread affinity
Does anybody know of a way to lock down individual threads within a Java process to specific CPU cores (on Linux)? I've done this in C, but can't find how to do this in Java. My instincts are that ...
3
votes
6answers
1k views
What good are thread affinity mask changes for the current thread?
I'm writing a game engine and I need a way to get a precise and accurate "deltatime" value from which to derive the current FPS for debug and also to limit the framerate (this is important for our ...
1
vote
3answers
2k views
SetThreadAffinityMask is ignored…any ideas?
Update: I found the problem - embarrassingly/ironically enough it was was calling SetThreadAffinity() in the wrong thread, not the main one (program startup is messy...)
It's all working now, thanks ...