OSDN Git Service

LDP: Update original to LDP v3.78-git-80a7408
[linuxjm/LDP_man-pages.git] / original / man3 / pthread_setaffinity_np.3
1 .\" Copyright (c) 2008 Linux Foundation, written by Michael Kerrisk
2 .\"     <mtk.manpages@gmail.com>
3 .\"
4 .\" %%%LICENSE_START(VERBATIM)
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
8 .\"
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
13 .\"
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein.  The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
20 .\" professionally.
21 .\"
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
24 .\" %%%LICENSE_END
25 .\"
26 .TH PTHREAD_SETAFFINITY_NP 3 2014-05-23 "Linux" "Linux Programmer's Manual"
27 .SH NAME
28 pthread_setaffinity_np, pthread_getaffinity_np \- set/get
29 CPU affinity of a thread
30 .SH SYNOPSIS
31 .nf
32 .BR "#define _GNU_SOURCE" "             /* See feature_test_macros(7) */"
33 .B #include <pthread.h>
34
35 .BI "int pthread_setaffinity_np(pthread_t " thread ", size_t " cpusetsize ,
36 .BI "                           const cpu_set_t *" cpuset );
37 .BI "int pthread_getaffinity_np(pthread_t " thread ", size_t " cpusetsize ,
38 .BI "                           cpu_set_t *" cpuset );
39 .sp
40 Compile and link with \fI\-pthread\fP.
41 .fi
42 .SH DESCRIPTION
43 The
44 .BR pthread_setaffinity_np ()
45 function
46 sets the CPU affinity mask of the thread
47 .I thread
48 to the CPU set pointed to by
49 .IR cpuset .
50 If the call is successful,
51 and the thread is not currently running on one of the CPUs in
52 .IR cpuset ,
53 then it is migrated to one of those CPUs.
54
55 The
56 .BR pthread_getaffinity_np ()
57 function returns the CPU affinity mask of the thread
58 .I thread
59 in the buffer pointed to by
60 .IR cpuset .
61
62 For more details on CPU affinity masks, see
63 .BR sched_setaffinity (2).
64 For a description of a set of macros
65 that can be used to manipulate and inspect CPU sets, see
66 .BR CPU_SET (3).
67
68 The argument
69 .I cpusetsize
70 is the length (in bytes) of the buffer pointed to by
71 .IR cpuset .
72 Typically, this argument would be specified as
73 .IR sizeof(cpu_set_t) .
74 (It may be some other value, if using the macros described in
75 .BR CPU_SET (3)
76 for dynamically allocating a CPU set.)
77 .SH RETURN VALUE
78 On success, these functions return 0;
79 on error, they return a nonzero error number.
80 .SH ERRORS
81 .TP
82 .B EFAULT
83 A supplied memory address was invalid.
84 .TP
85 .B EINVAL
86 .RB ( pthread_setaffinity_np ())
87 The affinity bit mask
88 .I mask
89 contains no processors that are currently physically on the system
90 and permitted to the thread according to any restrictions that
91 may be imposed by the "cpuset" mechanism described in
92 .BR cpuset (7).
93 .TP
94 .BR EINVAL
95 .RB ( pthread_setaffinity_np ())
96 .I cpuset
97 specified a CPU that was outside the set supported by the kernel.
98 (The kernel configuration option
99 .BR CONFIG_NR_CPUS
100 .\" FIXME . ?
101 .\" Loic Domaigne commented: it seems that in the future the
102 .\" kernel developers want to make cpumask_t dynamic, so
103 .\" CONFIG_NR_CPUS might become obsolete in the future.
104 defines the range of the set supported by the kernel data type
105 .\" cpumask_t
106 used to represent CPU sets.)
107 .\" The raw sched_getaffinity() system call returns the size (in bytes)
108 .\" of the cpumask_t type.
109 .TP
110 .B EINVAL
111 .RB ( pthread_getaffinity_np ())
112 .I cpusetsize
113 is smaller than the size of the affinity mask used by the kernel.
114 .TP
115 .B ESRCH
116 No thread with the ID
117 .I thread
118 could be found.
119 .SH VERSIONS
120 These functions are provided by glibc since version 2.3.4.
121 .SH ATTRIBUTES
122 .SS Multithreading (see pthreads(7))
123 The
124 .BR pthread_setaffinity_np ()
125 and
126 .BR pthread_getaffinity_np ()
127 functions are thread-safe.
128 .SH CONFORMING TO
129 These functions are nonstandard GNU extensions;
130 hence the suffix "_np" (nonportable) in the names.
131 .SH NOTES
132 After a call to
133 .BR pthread_setaffinity_np (),
134 the set of CPUs on which the thread will actually run is
135 the intersection of the set specified in the
136 .I cpuset
137 argument and the set of CPUs actually present on the system.
138 The system may further restrict the set of CPUs on which the thread
139 runs if the "cpuset" mechanism described in
140 .BR cpuset (7)
141 is being used.
142 These restrictions on the actual set of CPUs on which the thread
143 will run are silently imposed by the kernel.
144
145 These functions are implemented on top of the
146 .BR sched_setaffinity (2)
147 and
148 .BR sched_getaffinity (2)
149 system calls.
150
151 In glibc 2.3.3 only,
152 versions of these functions were provided that did not have a
153 .I cpusetsize
154 argument.
155 Instead the CPU set size given to the underlying system calls was always
156 .IR sizeof(cpu_set_t) .
157
158 A new thread created by
159 .BR pthread_create (3)
160 inherits a copy of its creator's CPU affinity mask.
161 .SH EXAMPLE
162 In the following program, the main thread uses
163 .BR pthread_setaffinity_np ()
164 to set its CPU affinity mask to include CPUs 0 to 7
165 (which may not all be available on the system),
166 and then calls
167 .BR pthread_getaffinity_np ()
168 to check the resulting CPU affinity mask of the thread.
169
170 .nf
171 #define _GNU_SOURCE
172 #include <pthread.h>
173 #include <stdio.h>
174 #include <stdlib.h>
175 #include <errno.h>
176
177 #define handle_error_en(en, msg) \\
178         do { errno = en; perror(msg); exit(EXIT_FAILURE); } while (0)
179
180 int
181 main(int argc, char *argv[])
182 {
183     int s, j;
184     cpu_set_t cpuset;
185     pthread_t thread;
186
187     thread = pthread_self();
188
189     /* Set affinity mask to include CPUs 0 to 7 */
190
191     CPU_ZERO(&cpuset);
192     for (j = 0; j < 8; j++)
193         CPU_SET(j, &cpuset);
194
195     s = pthread_setaffinity_np(thread, sizeof(cpu_set_t), &cpuset);
196     if (s != 0)
197         handle_error_en(s, "pthread_setaffinity_np");
198
199     /* Check the actual affinity mask assigned to the thread */
200
201     s = pthread_getaffinity_np(thread, sizeof(cpu_set_t), &cpuset);
202     if (s != 0)
203         handle_error_en(s, "pthread_getaffinity_np");
204
205     printf("Set returned by pthread_getaffinity_np() contained:\\n");
206     for (j = 0; j < CPU_SETSIZE; j++)
207         if (CPU_ISSET(j, &cpuset))
208             printf("    CPU %d\\n", j);
209
210     exit(EXIT_SUCCESS);
211 }
212 .fi
213 .SH SEE ALSO
214 .BR sched_setaffinity (2),
215 .BR pthread_attr_setaffinity_np (3),
216 .BR pthread_self (3),
217 .BR sched_getcpu (3),
218 .BR cpuset (7),
219 .BR pthreads (7),
220 .BR sched (7)