Update Gnulib to v0.1-77-gd9361da
[bpt/guile.git] / lib / nproc.h
CommitLineData
0f00f2c3
LC
1/* Detect the number of processors.
2
5e69ceb7 3 Copyright (C) 2009-2014 Free Software Foundation, Inc.
0f00f2c3
LC
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
8 any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License
005de2e8 16 along with this program; if not, see <http://www.gnu.org/licenses/>. */
0f00f2c3
LC
17
18/* Written by Glen Lenker and Bruno Haible. */
19
20/* Allow the use in C++ code. */
21#ifdef __cplusplus
22extern "C" {
23#endif
24
25/* A "processor" in this context means a thread execution unit, that is either
26 - an execution core in a (possibly multi-core) chip, in a (possibly multi-
27 chip) module, in a single computer, or
28 - a thread execution unit inside a core
29 (hyper-threading, see <http://en.wikipedia.org/wiki/Hyper-threading>).
30 Which of the two definitions is used, is unspecified. */
31
32enum nproc_query
33{
34 NPROC_ALL, /* total number of processors */
35 NPROC_CURRENT, /* processors available to the current process */
36 NPROC_CURRENT_OVERRIDABLE /* likewise, but overridable through the
37 OMP_NUM_THREADS environment variable */
38};
39
40/* Return the total number of processors. The result is guaranteed to
41 be at least 1. */
42extern unsigned long int num_processors (enum nproc_query query);
43
44#ifdef __cplusplus
45}
46#endif /* C++ */