summaryrefslogtreecommitdiffstats
path: root/schedutils/taskset.1
blob: 579d9bec45dd5749ab0cb0b869980a27174a020d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
'\" t
.\"     Title: taskset
.\"    Author: [see the "AUTHOR(S)" section]
.\" Generator: Asciidoctor 2.0.15
.\"      Date: 2022-05-11
.\"    Manual: User Commands
.\"    Source: util-linux 2.38.1
.\"  Language: English
.\"
.TH "TASKSET" "1" "2022-05-11" "util\-linux 2.38.1" "User Commands"
.ie \n(.g .ds Aq \(aq
.el       .ds Aq '
.ss \n[.ss] 0
.nh
.ad l
.de URL
\fI\\$2\fP <\\$1>\\$3
..
.als MTO URL
.if \n[.g] \{\
.  mso www.tmac
.  am URL
.    ad l
.  .
.  am MTO
.    ad l
.  .
.  LINKSTYLE blue R < >
.\}
.SH "NAME"
taskset \- set or retrieve a process\(aqs CPU affinity
.SH "SYNOPSIS"
.sp
\fBtaskset\fP [options] \fImask command\fP [\fIargument\fP...]
.sp
\fBtaskset\fP [options] \fB\-p\fP [\fImask\fP] \fIpid\fP
.SH "DESCRIPTION"
.sp
The \fBtaskset\fP command is used to set or retrieve the CPU affinity of a running process given its \fIpid\fP, or to launch a new \fIcommand\fP with a given CPU affinity. CPU affinity is a scheduler property that "bonds" a process to a given set of CPUs on the system. The Linux scheduler will honor the given CPU affinity and the process will not run on any other CPUs. Note that the Linux scheduler also supports natural CPU affinity: the scheduler attempts to keep processes on the same CPU as long as practical for performance reasons. Therefore, forcing a specific CPU affinity is useful only in certain applications.
.sp
The CPU affinity is represented as a bitmask, with the lowest order bit corresponding to the first logical CPU and the highest order bit corresponding to the last logical CPU. Not all CPUs may exist on a given system but a mask may specify more CPUs than are present. A retrieved mask will reflect only the bits that correspond to CPUs physically on the system. If an invalid mask is given (i.e., one that corresponds to no valid CPUs on the current system) an error is returned. The masks may be specified in hexadecimal (with or without a leading "0x"), or as a CPU list with the \fB\-\-cpu\-list\fP option. For example,
.sp
\fB0x00000001\fP
.RS 4
is processor #0,
.RE
.sp
\fB0x00000003\fP
.RS 4
is processors #0 and #1,
.RE
.sp
\fB0xFFFFFFFF\fP
.RS 4
is processors #0 through #31,
.RE
.sp
\fB32\fP
.RS 4
is processors #1, #4, and #5,
.RE
.sp
\fB\-\-cpu\-list 0\-2,6\fP
.RS 4
is processors #0, #1, #2, and #6.
.RE
.sp
\fB\-\-cpu\-list 0\-10:2\fP
.RS 4
is processors #0, #2, #4, #6, #8 and #10. The suffix ":N" specifies stride in the range, for example 0\-10:3 is interpreted as 0,3,6,9 list.
.RE
.sp
When \fBtaskset\fP returns, it is guaranteed that the given program has been scheduled to a legal CPU.
.SH "OPTIONS"
.sp
\fB\-a\fP, \fB\-\-all\-tasks\fP
.RS 4
Set or retrieve the CPU affinity of all the tasks (threads) for a given PID.
.RE
.sp
\fB\-c\fP, \fB\-\-cpu\-list\fP
.RS 4
Interpret \fImask\fP as numerical list of processors instead of a bitmask. Numbers are separated by commas and may include ranges. For example: \fB0,5,8\-11\fP.
.RE
.sp
\fB\-p\fP, \fB\-\-pid\fP
.RS 4
Operate on an existing PID and do not launch a new task.
.RE
.sp
\fB\-h\fP, \fB\-\-help\fP
.RS 4
Display help text and exit.
.RE
.sp
\fB\-V\fP, \fB\-\-version\fP
.RS 4
Print version and exit.
.RE
.SH "USAGE"
.sp
The default behavior is to run a new command with a given affinity mask:
.RS 4
\fBtaskset\fP \fImask\fP \fIcommand\fP [\fIarguments\fP]
.RE
.sp
You can also retrieve the CPU affinity of an existing task:
.RS 4
\fBtaskset \-p\fP \fIpid\fP
.RE
.sp
Or set it:
.RS 4
\fBtaskset \-p\fP \fImask pid\fP
.RE
.SH "PERMISSIONS"
.sp
A user can change the CPU affinity of a process belonging to the same user. A user must possess \fBCAP_SYS_NICE\fP to change the CPU affinity of a process belonging to another user. A user can retrieve the affinity mask of any process.
.SH "AUTHORS"
.sp
Written by Robert M. Love.
.SH "COPYRIGHT"
.sp
Copyright © 2004 Robert M. Love. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
.SH "SEE ALSO"
.sp
\fBchrt\fP(1),
\fBnice\fP(1),
\fBrenice\fP(1),
\fBsched_getaffinity\fP(2),
\fBsched_setaffinity\fP(2)
.sp
See \fBsched\fP(7) for a description of the Linux scheduling scheme.
.SH "REPORTING BUGS"
.sp
For bug reports, use the issue tracker at \c
.URL "https://github.com/util\-linux/util\-linux/issues" "" "."
.SH "AVAILABILITY"
.sp
The \fBtaskset\fP command is part of the util\-linux package which can be downloaded from \c
.URL "https://www.kernel.org/pub/linux/utils/util\-linux/" "Linux Kernel Archive" "."