1 .\" Copyright (c) 2008, Linux Foundation, written by Michael Kerrisk
2 .\" <mtk.manpages@gmail.com>
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.
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.
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
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
26 .TH SCHED_GETCPU 3 2014-05-10 "Linux" "Linux Programmer's Manual"
28 sched_getcpu \- determine CPU on which the calling thread is running
33 .B int sched_getcpu(void);
37 Feature Test Macro Requirements for glibc (see
38 .BR feature_test_macros (7)):
50 _BSD_SOURCE || _SVID_SOURCE
51 /* _GNU_SOURCE also suffices */
57 returns the number of the CPU on which the calling thread is currently executing.
61 returns a nonnegative CPU number.
62 On error, \-1 is returned and
64 is set to indicate the error.
68 This kernel does not implement
71 This function is available since glibc 2.6.
73 .SS Multithreading (see pthreads(7))
76 function is thread-safe.
89 is equivalent to the following
96 s = getcpu(&c, NULL, NULL);
97 cpu = (s == \-1) ? s : c;