Tagged Questions
2
votes
1answer
81 views
Pin processor CPU Isolation on Windows
In linux where I work mostly, we use a technique called CPU isolation, that effectively locks a process on to a processor and also prevents the processor from running anything else. Our kernel guys ...
3
votes
5answers
516 views
Why is it that restricting multithreaded applications to one core make it run faster?
I have a native multithreaded Win32 application written in C++ which has about 3 relatively busy threads and 4 to 6 threads that don't do that much. When it runs in a normal mode total CPU usage adds ...
0
votes
1answer
235 views
How to set processosor affinity for apache service?
I have several apache instances running on a windows machine and to avoid IO bottlenecks caused by Python's GIL, I need to set the affinity of apache's worker process.
Apache writes the PID of its ...
1
vote
1answer
750 views
How do I replace SetProcessAffinityMask()/GetProcessAffinityMask() for systems with more than 32 cores?
SetProcessAffinityMask() function accepts a DWORD mask so it can't be used correctly on systems with more than 32 processors.
Looks like SetThreadGroupAffinity() is intended to somehow address the ...
0
votes
1answer
154 views
Does set affinity ensure that only one core resources are used?
I just wanted to find out if setting cpu affinity ensure that the application runs only on that core ?
4
votes
4answers
1k views
Code for detecting APIC id returns same ids for different logical processors
I run my NT service on an Intel Core2 based Win2k3 machine where I need to iterate through all logical CPUs (all bits in process affinity). To do so I call GetProcessAffinityMask() to retrieve the ...