mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +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