man-pages/man2/sched_setaffinity.2

228 lines
6.7 KiB
Groff
Raw Normal View History

2004-11-03 13:51:07 +00:00
.\" man2/sched_setaffinity.2 - sched_setaffinity and sched_getaffinity man page
.\"
.\" Copyright (C) 2002 Robert Love
.\" and Copyright (C) 2006 Michael Kerrisk
2004-11-03 13:51:07 +00:00
.\"
.\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License as
.\" published by the Free Software Foundation; either version 2 of
.\" the License, or (at your option) any later version.
.\"
.\" The GNU General Public License's references to "object code"
.\" and "executables" are to be interpreted as the output of any
.\" document formatting or typesetting system, including
.\" intermediate and printed output.
.\"
.\" This manual is distributed in the hope that it will be useful,
.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
.\" GNU General Public License for more details.
.\"
.\" You should have received a copy of the GNU General Public
.\" License along with this manual; if not, write to the Free
.\" Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111,
.\" USA.
.\"
.\" 2002-11-19 Robert Love <rml@tech9.net> - initial version
.\" 2004-04-20 mtk - fixed description of return value
.\" 2004-04-22 aeb - added glibc prototype history
.\" 2005-05-03 mtk - noted that sched_setaffinity may cause thread
.\" migration and that CPU affinity is a per-thread attribute.
2006-02-02 19:46:34 +00:00
.\" 2006-02-03 mtk -- Major rewrite
2004-11-03 13:51:07 +00:00
.\"
2006-02-02 19:46:34 +00:00
.TH SCHED_SETAFFINITY 2 2006-02-03 "Linux" "Linux Programmer's Manual"
2004-11-03 13:51:07 +00:00
.SH NAME
sched_setaffinity, sched_getaffinity, CPU_CLR, CPU_ISSET, CPU_SET, CPU_ZERO \
\- set and get a process's CPU affinity mask
2004-11-03 13:51:07 +00:00
.SH SYNOPSIS
2006-05-01 23:05:09 +00:00
.nf
2007-06-25 08:51:11 +00:00
.B #define _GNU_SOURCE
2004-11-03 13:51:07 +00:00
.B #include <sched.h>
.sp
2006-02-02 19:46:34 +00:00
.BI "int sched_setaffinity(pid_t " pid ", unsigned int " cpusetsize ,
2006-05-01 23:05:09 +00:00
.BI " cpu_set_t *" mask );
2004-11-03 13:51:07 +00:00
.sp
2006-02-02 19:46:34 +00:00
.BI "int sched_getaffinity(pid_t " pid ", unsigned int " cpusetsize ,
2006-05-01 23:05:09 +00:00
.BI " cpu_set_t *" mask );
.sp
2006-02-02 19:46:34 +00:00
.BI "void CPU_CLR(int " cpu ", cpu_set_t *" set );
.br
2006-02-02 19:46:34 +00:00
.BI "int CPU_ISSET(int " cpu ", cpu_set_t *" set );
.br
2006-02-02 19:46:34 +00:00
.BI "void CPU_SET(int " cpu ", cpu_set_t *" set );
.br
2006-02-02 19:46:34 +00:00
.BI "void CPU_ZERO(cpu_set_t *" set );
2006-05-01 23:05:09 +00:00
.fi
2004-11-03 13:51:07 +00:00
.SH DESCRIPTION
2006-02-02 19:46:34 +00:00
A process's CPU affinity mask determines the set of CPUs on which
it is eligible to run.
On a multiprocessor system, setting the CPU affinity mask
can be used to obtain performance benefits.
2006-02-02 19:46:34 +00:00
For example,
by dedicating one CPU to a particular process
(i.e., setting the affinity mask of that process to specify a single CPU,
and setting the affinity mask of all other processes to exclude that CPU),
2006-02-02 19:46:34 +00:00
it is possible to ensure maximum execution speed for that process.
Restricting a process to run on a single CPU also prevents
the performance cost caused by the cache invalidation that occurs
when a process ceases to execute on one CPU and then
2006-02-02 19:46:34 +00:00
recommences execution on a different CPU.
A CPU affinity mask is represented by the
.I cpu_set_t
2006-02-02 19:46:34 +00:00
structure, a "CPU set", pointed to by
.IR mask .
Four macros are provided to manipulate CPU sets.
.BR CPU_ZERO ()
clears a set.
.BR CPU_SET ()
and
.BR CPU_CLR ()
respectively add and remove a given CPU from a set.
.BR CPU_ISSET ()
tests to see if a CPU is part of the set; this is useful after
.BR sched_getaffinity ()
returns.
The first available CPU on the system corresponds to a
.I cpu
value of 0, the next CPU corresponds to a
.I cpu
value of 1, and so on.
The constant
.B CPU_SETSIZE
(1024) specifies a value one greater than the maximum CPU
2006-02-02 19:46:34 +00:00
number that can be stored in a CPU set.
.BR sched_setaffinity ()
2006-02-02 19:46:34 +00:00
sets the CPU affinity mask of the process whose ID is
2007-09-20 16:26:31 +00:00
.I pid
2006-02-02 19:46:34 +00:00
to the value specified by
.IR mask .
2004-11-03 13:51:07 +00:00
If
.I pid
2006-02-02 19:46:34 +00:00
is zero, then the calling process is used.
The argument
.I cpusetsize
is the length (in bytes) of the data pointed to by
2004-11-03 13:51:07 +00:00
.IR mask .
2006-02-02 19:46:34 +00:00
Normally this argument would be specified as
.IR "sizeof(cpu_set_t)" .
If the process specified by
.I pid
2006-02-02 19:46:34 +00:00
is not currently running on one of the CPUs specified in
.IR mask ,
then that process is migrated to one of the CPUs specified in
.IR mask .
2006-02-02 19:46:34 +00:00
.BR sched_getaffinity ()
2006-02-02 19:46:34 +00:00
writes the affinity mask of the process whose ID is
2007-09-20 16:26:31 +00:00
.I pid
into the
2006-02-02 19:46:34 +00:00
.I cpu_set_t
structure pointed to by
.IR mask .
The
2006-02-02 19:46:34 +00:00
.I cpusetsize
argument specifies the size (in bytes) of
.IR mask .
2004-11-03 13:51:07 +00:00
If
.I pid
2006-02-02 19:46:34 +00:00
is zero, then the mask of the calling process is returned.
2004-11-03 13:51:07 +00:00
.SH "RETURN VALUE"
On success,
.BR sched_setaffinity ()
2006-02-02 19:46:34 +00:00
and
.BR sched_getaffinity ()
2006-02-02 19:46:34 +00:00
return 0.
2004-11-03 13:51:07 +00:00
On error, \-1 is returned, and
.I errno
is set appropriately.
.SH ERRORS
.TP
.B EFAULT
A supplied memory address was invalid.
.TP
.B EINVAL
2007-07-01 04:23:34 +00:00
The affinity bit mask
2004-11-03 13:51:07 +00:00
.I mask
2006-02-02 19:46:34 +00:00
contains no processors that are physically on the system,
.\" The following can only (?) occur with the raw sched_getaffinity()
2006-02-02 19:46:34 +00:00
.\" system call (MTK, 3 Feb 2006):
or
2006-02-02 19:46:34 +00:00
.I cpusetsize
2004-11-03 13:51:07 +00:00
is smaller than the size of the affinity mask used by the kernel.
.TP
.B EPERM
The calling process does not have appropriate privileges.
The process calling
.BR sched_setaffinity ()
2004-11-03 13:51:07 +00:00
needs an effective user ID equal to the user ID or effective user ID
of the process identified by
.IR pid ,
or it must possess the
2007-09-20 16:26:31 +00:00
.B CAP_SYS_NICE
2004-11-03 13:51:07 +00:00
capability.
.TP
.B ESRCH
2007-07-18 20:24:30 +00:00
The process whose ID is \fIpid\fP could not be found.
.SH VERSIONS
The CPU affinity system calls were introduced in Linux kernel 2.5.8.
The library interfaces were introduced in glibc 2.3.
Initially, the glibc interfaces included a
.I cpusetsize
argument.
In glibc 2.3.3, the
.I cpusetsize
argument was removed, but this argument was restored in glibc 2.3.4.
2006-02-02 19:46:34 +00:00
.SH "CONFORMING TO"
2007-12-25 21:28:09 +00:00
These system calls are Linux-specific.
.SH "NOTES"
2007-12-17 11:24:05 +00:00
.BR sched_setscheduler (2)
has a description of the Linux scheduling scheme.
.PP
The affinity mask is actually a per-thread attribute that can be
adjusted independently for each of the threads in a thread group.
The value returned from a call to
.BR gettid (2)
can be passed in the argument
.IR pid .
Specifying
.I pid
as 0 will set the attribute for the current thread,
and passing the value returned from a call to
.BR getpid (2)
will set the attribute for the main thread of the thread group.
2006-02-02 19:46:34 +00:00
A child created via
2006-02-02 19:46:34 +00:00
.BR fork (2)
inherits its parent's CPU affinity mask.
The affinity mask is preserved across an
.BR execve (2).
This manual page describes the glibc interface for the CPU affinity calls.
The actual system call interface is slightly different, with the
2006-02-02 19:46:34 +00:00
.I mask
being typed as
.IR "unsigned long *" ,
reflecting that the fact that the underlying implementation of CPU
2007-07-01 04:23:34 +00:00
sets is a simple bit mask.
On success, the raw
2006-02-02 19:46:34 +00:00
.BR sched_getaffinity ()
system call returns the size (in bytes) of the
2006-02-02 19:46:34 +00:00
.I cpumask_t
data type that is used internally by the kernel to
2007-07-01 04:23:34 +00:00
represent the CPU set bit mask.
2004-11-03 13:51:07 +00:00
.SH "SEE ALSO"
.BR clone (2),
2004-11-03 13:51:07 +00:00
.BR getpriority (2),
.BR gettid (2),
2004-11-03 13:51:07 +00:00
.BR nice (2),
.BR sched_get_priority_max (2),
.BR sched_get_priority_min (2),
.BR sched_getscheduler (2),
.BR sched_setscheduler (2),
.BR setpriority (2),
2008-06-17 08:32:41 +00:00
.BR capabilities (7),
.BR cpuset (7)