码迷,mamicode.com
首页 > 系统相关 > 详细

利用taskset命令,将某进程绑定到某个CPU上

时间:2017-05-16 23:07:59      阅读:1593      评论:0      收藏:0      [点我收藏+]

标签:进程   taskset   绑定到cpu   

taskset (util-linux-ng 2.17.2)
usage: taskset [options] [mask | cpu-list] [pid | cmd [args...]]
set or get the affinity of a process
  -p, --pid                  operate on existing given pid
  -c, --cpu-list             display and specify cpus in list format
  -h, --help                 display this help
  -V, --version              output version information
The default behavior is to run a new command:
  taskset 03 sshd -b 1024
You can retrieve the mask of an existing task:
  taskset -p 700
Or set it:
  taskset -p 03 700
List format uses a comma-separated list instead of a mask:
  taskset -pc 0,3,7-11 700
Ranges in list format can take a stride argument:
  e.g. 0-31:2 is equivalent to mask 0x55555555

例:

将pid号为2181的进程绑定到cpu0上:

[root@Centos ~]# taskset -cp 0 2181
pid 2181‘s current affinity list: 0
pid 2181‘s new affinity list: 0

将pid号为2181的进程绑定到几个cpu上:

[root@Centos ~]# taskset -cp 0,1 2181  --绑定到cpu0和cpu1上


利用taskset命令,将某进程绑定到某个CPU上

标签:进程   taskset   绑定到cpu   

原文地址:http://sumail.blog.51cto.com/7402899/1926384

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!