ThreadMap

Type Alias ThreadMap 

Source
type ThreadMap<const N: usize> = BitReclaimMap<UId, Thread, N>;

Aliased Type§

struct ThreadMap<const N: usize> {
    map: IndexMap<UId, Thread, N>,
    free: BitAlloc<N>,
}

Fields§

§map: IndexMap<UId, Thread, N>§free: BitAlloc<N>