num_threads 0.1.7

A minimal library that determines the number of running threads for the current process.
Documentation
1
2
3
4
5
6
7
//! Fallback if no OS matches.

use std::num::NonZeroUsize;

pub(crate) fn num_threads() -> Option<NonZeroUsize> {
    None
}