0
votes
0answers
154 views

Get processor affinity from matlab

Is it possible to get processor affinity at run time from Matlab environment? If so how?
0
votes
1answer
159 views

Force a specific processor affinity on an unmanaged DLL call from VB.NET

I am calling a function from a VB.NET webserver to a custom written unmanaged DLL. If we call this DLL via a webservice on a multi-core server we run into problems and it always crashes. If I reboot ...
2
votes
2answers
1k views

setting processor affinity with C++ that will run on Linux [duplicate]

Possible Duplicate: CPU Affinity I'm running on Linux and I want to write a C++ program that will set 2 specific processors that my 2 applications that will run in parallel (i.e. setting ...
1
vote
4answers
429 views

Threads and CPU Affinity

Lets say there are two processors on a machine. Thread A is running on P1 and Thread B is running on P2. Thread A calls Sleep(10000); Is it possible that when Thread A starts executing again, it ...
16
votes
4answers
13k views

how to set CPU affinity of a particular pthread?

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 ...
8
votes
8answers
14k views

How to set processor affinity on an executable in Windows XP?

I have a quad core system with third party application that once in a while spins several processes (always the same executable but several instances of it) and takes 100% of CPU time. I also have a ...