1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/runtime/runtime_nix.c.v

9 lines
188 B
V
Raw Normal View History

module runtime
fn C.sysconf(name int) i64
// nr_cpus returns the number of virtual CPU cores found on the system.
pub fn nr_cpus() int {
2022-01-19 20:29:29 +03:00
return int(C.sysconf(C._SC_NPROCESSORS_ONLN))
}