diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2020-10-14 21:49:45 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-14 21:49:45 -0400 |
| commit | 3b4432d9a6ae7f01f66e5ddcc15bf579d2c47460 (patch) | |
| tree | d24b87f33bf868ad6b4857bb500a80441744cc4a /lib/std/std.zig | |
| parent | 2f52f95b928c1dcb42afb22243c27fb9661cbd1b (diff) | |
| parent | 12508025a4b3a841819b913e4ed88810ca04ba79 (diff) | |
| download | zig-3b4432d9a6ae7f01f66e5ddcc15bf579d2c47460.tar.gz zig-3b4432d9a6ae7f01f66e5ddcc15bf579d2c47460.zip | |
Merge pull request #6655 from kprotty/timers
Integrate std.time.sleep with the event loop
Diffstat (limited to 'lib/std/std.zig')
| -rw-r--r-- | lib/std/std.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/std/std.zig b/lib/std/std.zig index 62f7f21f4e..f4cca0f9f4 100644 --- a/lib/std/std.zig +++ b/lib/std/std.zig @@ -14,6 +14,7 @@ pub const AutoArrayHashMap = array_hash_map.AutoArrayHashMap; pub const AutoArrayHashMapUnmanaged = array_hash_map.AutoArrayHashMapUnmanaged; pub const AutoHashMap = hash_map.AutoHashMap; pub const AutoHashMapUnmanaged = hash_map.AutoHashMapUnmanaged; +pub const AutoResetEvent = @import("auto_reset_event.zig").AutoResetEvent; pub const BufMap = @import("buf_map.zig").BufMap; pub const BufSet = @import("buf_set.zig").BufSet; pub const ChildProcess = @import("child_process.zig").ChildProcess; |
