zig/lib/std/event
Stephen Gutekanst d2681d2537 std.event.WaitGroup: fix compilation (acquire->lock, release->unlock)
In 008b0ec5e5 the `std.Thread.Mutex` API was changed
from `acquire` and `release` to `lock` and `unlock`. `std.event.Lock` still uses `acquire`
and `release`. `std.event.WaitGroup` is using `std.Thread.Mutex` and was not updated to use
`lock` and `unlock`, and so compilation failed prior to this commit.

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
2022-04-11 03:02:41 -04:00
..
batch.zig remove redundant license headers from zig standard library 2021-08-24 12:25:09 -07:00
channel.zig migrate from std.Target.current to @import("builtin").target 2021-10-04 23:48:55 -07:00
future.zig migrate from std.Target.current to @import("builtin").target 2021-10-04 23:48:55 -07:00
group.zig allocgate: std Allocator interface refactor 2021-11-30 23:32:47 +00:00
lock.zig std.Thread.Mutex: change API to lock() and unlock() 2021-11-09 18:31:03 -07:00
locked.zig remove redundant license headers from zig standard library 2021-08-24 12:25:09 -07:00
loop.zig std: avoid referencing event loop when io_mode is blocking 2022-03-29 22:16:43 -07:00
rwlock.zig allocgate: std Allocator interface refactor 2021-11-30 23:32:47 +00:00
rwlocked.zig remove redundant license headers from zig standard library 2021-08-24 12:25:09 -07:00
wait_group.zig std.event.WaitGroup: fix compilation (acquire->lock, release->unlock) 2022-04-11 03:02:41 -04:00