Skip to content
View kprotty's full-sized avatar

Organizations

@ziglang
Block or Report

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

  1. zap zap Public

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

    Zig 390 15

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

    Benchmarking a faster std.Mutex implementation for Zig

    Zig 27 2

  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