blob: 496b44b114cc4af9325d647d7e6347d91eccdb1a [file] [log] [blame]
xf.libdd93d52023-05-12 07:10:14 -07001/* getsysstats - Determine various system internal values. NaCl version.
2 Copyright (C) 2015-2016 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 The GNU C Library 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 GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
18
19#include <errno.h>
20#include <sys/sysinfo.h>
21#include <nacl-interfaces.h>
22
23#undef __native_client__
24#include "native_client/src/trusted/service_runtime/include/sys/unistd.h"
25
26
27int
28__get_nprocs_conf (void)
29{
30 int nprocs;
31 if (__nacl_irt_basic.sysconf (NACL_ABI__SC_NPROCESSORS_ONLN, &nprocs) != 0)
32 /* On failure (which should be impossible), just report one processor. */
33 nprocs = 1;
34 return nprocs;
35}
36weak_alias (__get_nprocs_conf, get_nprocs_conf)
37
38int
39__get_nprocs (void)
40{
41 return __get_nprocs_conf ();
42}
43weak_alias (__get_nprocs, get_nprocs)
44
45
46long int
47__get_phys_pages (void)
48{
49 /* We have no general way to determine this value. */
50 __set_errno (ENOSYS);
51 return -1;
52}
53weak_alias (__get_phys_pages, get_phys_pages)
54stub_warning (get_phys_pages)
55
56
57long int
58__get_avphys_pages (void)
59{
60 /* We have no general way to determine this value. */
61 __set_errno (ENOSYS);
62 return -1;
63}
64weak_alias (__get_avphys_pages, get_avphys_pages)
65stub_warning (get_avphys_pages)