/threadpool.zig

a work stealing threadpool written in zig

Primary LanguageZigMIT LicenseMIT

threadpool.zig

a naive threadpool for zig

usage

const std = @import("std");
const threadpool = @import("threadpool");

const debug = std.debug;
const mem = std.mem;
const assert = debug.assert;

pub fn main() !void {
    // TODO write example
}