1GETCPU(2) Linux Programmer's Manual GETCPU(2)
2
3
4
6 getcpu - determine CPU and NUMA node on which the calling thread is
7 running
8
10 #include <linux/getcpu.h>
11
12 int getcpu(unsigned *cpu, unsigned *node, struct getcpu_cache *tcache);
13
15 The getcpu() system call identifies the processor and node on which the
16 calling thread or process is currently running and writes them into the
17 integers pointed to by the cpu and node arguments. The processor is a
18 unique small integer identifying a CPU. The node is a unique small
19 identifier identifying a NUMA node. When either cpu or node is NULL
20 nothing is written to the respective pointer.
21
22 The third argument to this system call is nowadays unused, and should
23 be specified as NULL unless portability to Linux 2.6.23 or earlier is
24 required (see NOTES).
25
26 The information placed in cpu is guaranteed to be current only at the
27 time of the call: unless the CPU affinity has been fixed using
28 sched_setaffinity(2), the kernel might change the CPU at any time.
29 (Normally this does not happen because the scheduler tries to minimize
30 movements between CPUs to keep caches hot, but it is possible.) The
31 caller must allow for the possibility that the information returned in
32 cpu and node is no longer current by the time the call returns.
33
35 On success, 0 is returned. On error, -1 is returned, and errno is set
36 appropriately.
37
39 EFAULT Arguments point outside the calling process's address space.
40
42 getcpu() was added in kernel 2.6.19 for x86-64 and i386. Library sup‐
43 port was added in glibc 2.29 (Earlier glibc versions did not provide a
44 wrapper for this system call, necessitating the use of syscall(2).)
45
47 getcpu() is Linux-specific.
48
50 Linux makes a best effort to make this call as fast as possible. (On
51 some architectures, this is done via an implementation in the vdso(7).)
52 The intention of getcpu() is to allow programs to make optimizations
53 with per-CPU data or for NUMA optimization.
54
55 The tcache argument is unused since Linux 2.6.24. In earlier kernels,
56 if this argument was non-NULL, then it specified a pointer to a caller-
57 allocated buffer in thread-local storage that was used to provide a
58 caching mechanism for getcpu(). Use of the cache could speed getcpu()
59 calls, at the cost that there was a very small chance that the returned
60 information would be out of date. The caching mechanism was considered
61 to cause problems when migrating threads between CPUs, and so the argu‐
62 ment is now ignored.
63
65 mbind(2), sched_setaffinity(2), set_mempolicy(2), sched_getcpu(3),
66 cpuset(7), vdso(7)
67
69 This page is part of release 5.04 of the Linux man-pages project. A
70 description of the project, information about reporting bugs, and the
71 latest version of this page, can be found at
72 https://www.kernel.org/doc/man-pages/.
73
74
75
76Linux 2019-03-06 GETCPU(2)