structstd.Thread.Pool.Options[src]

Fields

allocator: std.mem.Allocator
n_jobs: ?usize = null
track_ids: bool = false
stack_size: usize = std.Thread.SpawnConfig.default_stack_size

Source Code

Source code
pub const Options = struct {
    allocator: std.mem.Allocator,
    n_jobs: ?usize = null,
    track_ids: bool = false,
    stack_size: usize = std.Thread.SpawnConfig.default_stack_size,
}