setting processor affinity with C++ that will run

2020-03-05 07:16发布

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 each process to run on a different core/CPU). I want to use processor affinity tool with C++. Please can anyone help with C++ code.

2条回答
Luminary・发光体
2楼-- · 2020-03-05 07:48

From the command line you can use taskset(1), or from within your code you can use sched_setaffinity(2).

E.g.

#ifdef __linux__    // Linux only
#include <sched.h>  // sched_setaffinity
#endif

int main(int argc, char *argv[])
{
#ifdef __linux__
    int cpuAffinity = argc > 1 ? atoi(argv[1]) : -1;

    if (cpuAffinity > -1)
    {
        cpu_set_t mask;
        int status;

        CPU_ZERO(&mask);
        CPU_SET(cpuAffinity, &mask);
        status = sched_setaffinity(0, sizeof(mask), &mask);
        if (status != 0)
        {
            perror("sched_setaffinity");
        }
    }
#endif

    // ... your program ...
}
查看更多
【Aperson】
3楼-- · 2020-03-05 07:49
登录 后发表回答