mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
17 lines
168 B
V
17 lines
168 B
V
module runtime
|
|
|
|
/*
|
|
$if linux {
|
|
#include <sys/sysinfo.h>
|
|
fn C.get_nprocs() int
|
|
}
|
|
*/
|
|
|
|
|
|
pub fn nr_cpus() int {
|
|
//$if linux {
|
|
//return C.get_nprocs()
|
|
//}
|
|
return 0
|
|
}
|