Skip to content
View kprotty's full-sized avatar

Block or report kprotty

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. zap zap Public

    An asynchronous runtime with a focus on performance and resource efficiency.

    Zig 539 21

  2. zig-adaptive-lock zig-adaptive-lock Public

    Benchmarking a faster std.Mutex implementation for Zig

    Zig 33 3

  3. Small & Fast synchronization primiti... Small & Fast synchronization primitives for Zig
    1
    
                  
    2
    
                  
    3
    pub fn ParkingLot(comptime Config: type) type {
    4
        return struct {
    5
            pub const Lock: type = Config.Lock;
  4. Zig nanocoroutines Zig nanocoroutines
    1
    // Bit-vector + rand shuffle order scheduler
    2
    
                  
    3
    const std = @import("std");
    4
    const Allocator = std.mem.Allocator;
    5