mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
14 lines
No EOL
244 B
V
14 lines
No EOL
244 B
V
module runtime
|
|
|
|
pub fn nr_cpus() int {
|
|
$if linux {
|
|
return int(C.sysconf(C._SC_NPROCESSORS_ONLN))
|
|
}
|
|
$if macos {
|
|
return int(C.sysconf(C._SC_NPROCESSORS_ONLN))
|
|
}
|
|
$if solaris {
|
|
return int(C.sysconf(C._SC_NPROCESSORS_ONLN))
|
|
}
|
|
return 1
|
|
} |