1GETCPU(2)                  Linux Programmer's Manual                 GETCPU(2)
2
3
4

NAME

6       getcpu  -  determine  CPU  and NUMA node on which the calling thread is
7       running
8

SYNOPSIS

10       #include <linux/getcpu.h>
11
12       int getcpu(unsigned *cpu, unsigned *node, struct getcpu_cache *tcache);
13
14       Note: There is no glibc wrapper for this system call; see NOTES.
15

DESCRIPTION

17       The getcpu() system call identifies the processor and node on which the
18       calling thread or process is currently running and writes them into the
19       integers pointed to by the cpu and node arguments.  The processor is  a
20       unique  small  integer  identifying  a CPU.  The node is a unique small
21       identifier identifying a NUMA node.  When either cpu or  node  is  NULL
22       nothing is written to the respective pointer.
23
24       The  third  argument to this system call is nowadays unused, and should
25       be specified as NULL unless portability to Linux 2.6.23 or  earlier  is
26       required (see NOTES).
27
28       The  information  placed in cpu is guaranteed to be current only at the
29       time of the  call:  unless  the  CPU  affinity  has  been  fixed  using
30       sched_setaffinity(2),  the  kernel  might  change  the CPU at any time.
31       (Normally this does not happen because the scheduler tries to  minimize
32       movements  between  CPUs  to keep caches hot, but it is possible.)  The
33       caller must allow for the possibility that the information returned  in
34       cpu and node is no longer current by the time the call returns.
35

RETURN VALUE

37       On  success, 0 is returned.  On error, -1 is returned, and errno is set
38       appropriately.
39

ERRORS

41       EFAULT Arguments point outside the calling process's address space.
42

VERSIONS

44       getcpu() was added in kernel 2.6.19 for x86_64 and i386.
45

CONFORMING TO

47       getcpu() is Linux specific.
48

NOTES

50       Linux makes a best effort to make this  call  as  fast  possible.   The
51       intention  of  getcpu() is to allow programs to make optimizations with
52       per-CPU data or for NUMA optimization.
53
54       Glibc does not provide a wrapper for this system call;  call  it  using
55       syscall(2); or use sched_getcpu(3) instead.
56
57       The  tcache argument is unused since Linux 2.6.24.  In earlier kernels,
58       if this argument was non-NULL, then it specified a pointer to a caller-
59       allocated  buffer  in  thread-local  storage that was used to provide a
60       caching mechanism for getcpu().  Use of the cache could speed  getcpu()
61       calls, at the cost that there was a very small chance that the returned
62       information would be out of date.  The caching mechanism was considered
63       to cause problems when migrating threads between CPUs, and so the argu‐
64       ment is now ignored.
65

SEE ALSO

67       mbind(2),  sched_setaffinity(2),   set_mempolicy(2),   sched_getcpu(3),
68       cpuset(7)
69

COLOPHON

71       This  page  is  part of release 3.53 of the Linux man-pages project.  A
72       description of the project, and information about reporting  bugs,  can
73       be found at http://www.kernel.org/doc/man-pages/.
74
75
76
77Linux                             2013-04-03                         GETCPU(2)
Impressum