mirror of
https://gitee.com/openharmony/third_party_rust_num_cpus
synced 2024-11-23 05:29:41 +00:00
db6742e386
Merge pull request !2 from peizhe/master |
||
---|---|---|
.github/workflows | ||
ci/cgroups | ||
examples | ||
fixtures/cgroups | ||
src | ||
.gitignore | ||
BUILD.gn | ||
Cargo.toml | ||
CHANGELOG.md | ||
CONTRIBUTING.md | ||
LICENSE-APACHE | ||
LICENSE-MIT | ||
README.md | ||
README.OpenSource |
num_cpus
Count the number of CPUs on the current machine.
Usage
Add to Cargo.toml:
[dependencies]
num_cpus = "1.0"
In your main.rs
or lib.rs
:
extern crate num_cpus;
// count logical cores this process could try to use
let num = num_cpus::get();