mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-07 05:28:42 +00:00
7 lines
150 B
Rust
7 lines
150 B
Rust
|
extern crate num_cpus;
|
||
|
|
||
|
fn main() {
|
||
|
println!("Logical CPUs: {}", num_cpus::get());
|
||
|
println!("Physical CPUs: {}", num_cpus::get_physical());
|
||
|
}
|