2020-06-15 14:18:57 +00:00
|
|
|
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
|
|
|
│vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│
|
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
|
|
│ Copyright 2020 Justine Alexandra Roberts Tunney │
|
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ Permission to use, copy, modify, and/or distribute this software for │
|
|
|
|
│ any purpose with or without fee is hereby granted, provided that the │
|
|
|
|
│ above copyright notice and this permission notice appear in all copies. │
|
2020-06-15 14:18:57 +00:00
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
|
|
|
|
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
|
|
|
|
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
|
|
|
|
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │
|
|
|
|
│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │
|
|
|
|
│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │
|
|
|
|
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
|
|
|
│ PERFORMANCE OF THIS SOFTWARE. │
|
2020-06-15 14:18:57 +00:00
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
2023-04-27 03:45:01 +00:00
|
|
|
#include "libc/runtime/sysconf.h"
|
2021-04-18 18:34:59 +00:00
|
|
|
#include "libc/runtime/clktck.h"
|
2022-06-09 03:01:28 +00:00
|
|
|
#include "libc/runtime/runtime.h"
|
2022-04-28 16:42:36 +00:00
|
|
|
#include "libc/sysv/consts/limits.h"
|
2021-08-17 06:45:41 +00:00
|
|
|
#include "libc/sysv/consts/rlimit.h"
|
|
|
|
|
2020-06-15 14:18:57 +00:00
|
|
|
/**
|
|
|
|
* Returns configuration value about system.
|
2021-04-18 18:34:59 +00:00
|
|
|
*
|
|
|
|
* The following parameters are supported:
|
|
|
|
*
|
|
|
|
* - `_SC_CLK_TCK` returns number of clock ticks per second
|
|
|
|
* - `_SC_ARG_MAX` currently always returns 32768 due to Windows
|
|
|
|
* - `_SC_PAGESIZE` currently always returns 65536 due to Windows
|
2021-08-12 07:42:14 +00:00
|
|
|
* - `_SC_NPROCESSORS_ONLN` returns number of CPUs in the system
|
2021-08-18 21:21:30 +00:00
|
|
|
* - `_SC_OPEN_MAX` returns maximum number of open files
|
|
|
|
* - `_SC_CHILD_MAX` returns maximum number of processes
|
2021-04-18 18:34:59 +00:00
|
|
|
*
|
2020-06-15 14:18:57 +00:00
|
|
|
*/
|
2021-04-18 18:34:59 +00:00
|
|
|
long sysconf(int name) {
|
2021-08-12 07:42:14 +00:00
|
|
|
int n;
|
2021-04-18 18:34:59 +00:00
|
|
|
switch (name) {
|
|
|
|
case _SC_ARG_MAX:
|
2022-04-28 16:42:36 +00:00
|
|
|
return _ARG_MAX;
|
2021-08-17 06:45:41 +00:00
|
|
|
case _SC_CHILD_MAX:
|
2023-03-06 07:52:17 +00:00
|
|
|
return _GetResourceLimit(RLIMIT_NPROC);
|
2021-04-18 18:34:59 +00:00
|
|
|
case _SC_CLK_TCK:
|
|
|
|
return CLK_TCK;
|
2021-08-17 06:45:41 +00:00
|
|
|
case _SC_OPEN_MAX:
|
2023-03-06 07:52:17 +00:00
|
|
|
return _GetMaxFd();
|
2021-04-18 18:34:59 +00:00
|
|
|
case _SC_PAGESIZE:
|
|
|
|
return FRAMESIZE;
|
2021-08-12 07:42:14 +00:00
|
|
|
case _SC_NPROCESSORS_ONLN:
|
2022-10-12 04:06:27 +00:00
|
|
|
n = _getcpucount();
|
2021-08-12 07:42:14 +00:00
|
|
|
return n > 0 ? n : -1;
|
2021-04-18 18:34:59 +00:00
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|