|
|
||
|---|---|---|
| .. | ||
| .github/workflows | ||
| ci/cgroups | ||
| examples | ||
| fixtures/cgroups | ||
| patches | ||
| src | ||
| .cargo_vcs_info.json | ||
| Android.bp | ||
| CHANGELOG.md | ||
| CONTRIBUTING.md | ||
| Cargo.lock | ||
| Cargo.toml | ||
| Cargo.toml.orig | ||
| LICENSE | ||
| LICENSE-APACHE | ||
| LICENSE-MIT | ||
| METADATA | ||
| MODULE_LICENSE_APACHE2 | ||
| OWNERS | ||
| README.md | ||
| TEST_MAPPING | ||
| cargo2android.json | ||
README.md
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();