mirror of
https://github.com/ziglang/zig.git
synced 2025-12-07 23:03:08 +00:00
* thread/condition: fix PthreadCondition compilation * thread/condition: add wait, signal and broadcast This is like std.Thread.Mutex which forwards calls to `impl`; avoids having to call `cond.impl` every time. * thread/condition: initialize the implementation