如何使用sched_getaffinity(2)和sched_setaffinity(2).请给代码示例在C程序中使用

前端之家收集整理的这篇文章主要介绍了如何使用sched_getaffinity(2)和sched_setaffinity(2).请给代码示例在C程序中使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在尝试着

与处理器固定同时运行16个副本(每个核心2个副本)

在处理器固定(每个核心为2个副本)的同时运行8个副本,并且在功能1完成后,将处理器内核翻转到最远的内核.

我所面临的问题是如何选择最远的处理器.

有些朋友建议使用sched_getaffinity(2)和sched_setaffinity,但我没有找到任何好的例子.

请帮忙.

解决方法

要使用sched_setaffinity使当前进程在核心7上运行,请执行以下操作:
cpu_set_t my_set;        /* Define your cpu_set bit mask. */
cpu_ZERO(&my_set);       /* Initialize it all to 0,i.e. no cpus selected. */
cpu_SET(7,&my_set);     /* set the bit that represents core 7. */
sched_setaffinity(0,sizeof(cpu_set_t),&my_set); /* Set affinity of tihs process to */
                                                  /* the defined mask,i.e. only 7. */

http://linux.die.net/man/2/sched_setaffinity& http://www.gnu.org/software/libc/manual/html_node/CPU-Affinity.html了解更多信息.

原文链接:https://www.f2er.com/c/113188.html

猜你在找的C&C++相关文章