Skip to content
View kprotty's full-sized avatar

Organizations

@ziglang

Block or report kprotty

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned Loading

  1. zap Public

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

    Zig 494 17

  2. zig-adaptive-lock Public

    Benchmarking a faster std.Mutex implementation for Zig

    Zig 30 3

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