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

17 lines
168 B
V
Raw Normal View History

2019-10-11 06:36:46 +03:00
module runtime
2019-10-12 03:49:36 +03:00
/*
$if linux {
#include <sys/sysinfo.h>
fn C.get_nprocs() int
}
2019-10-12 03:49:36 +03:00
*/
pub fn nr_cpus() int {
2019-10-12 03:49:36 +03:00
//$if linux {
//return C.get_nprocs()
//}
return 0
}