zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit b5cfbfd84ee26d5174abf3368b75b9e4502898a5 (tree)
parent 1b82a9defce4daf2fea8e6290c7a8a4689878194
Author: Andrew Kelley <superjoe30@gmail.com>
Date:   Mon,  9 Jul 2018 23:41:28 -0400

fix regression from b6eb4048

Diffstat:
Mstd/event/locked.zig | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/std/event/locked.zig b/std/event/locked.zig @@ -1,5 +1,6 @@ const std = @import("../index.zig"); const Lock = std.event.Lock; +const Loop = std.event.Loop; /// Thread-safe async/await lock that protects one piece of data. /// Does not make any syscalls - coroutines which are waiting for the lock are suspended, and