2019-11-15 13:14:28 +00:00
|
|
|
module runtime
|
|
|
|
|
2020-12-27 18:14:43 +00:00
|
|
|
// nr_cpus returns the number of virtual CPU cores found on the system.
|
2020-07-20 14:36:44 +00:00
|
|
|
pub fn nr_cpus() int {
|
2019-11-15 13:14:28 +00:00
|
|
|
$if linux {
|
|
|
|
return int(C.sysconf(C._SC_NPROCESSORS_ONLN))
|
|
|
|
}
|
2020-01-09 10:12:35 +00:00
|
|
|
$if macos {
|
2019-11-15 13:14:28 +00:00
|
|
|
return int(C.sysconf(C._SC_NPROCESSORS_ONLN))
|
|
|
|
}
|
2020-03-21 08:48:02 +00:00
|
|
|
$if solaris {
|
|
|
|
return int(C.sysconf(C._SC_NPROCESSORS_ONLN))
|
|
|
|
}
|
2019-11-15 13:14:28 +00:00
|
|
|
return 1
|
2020-12-27 18:14:43 +00:00
|
|
|
}
|