We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8091d4 commit 1344fc1Copy full SHA for 1344fc1
src/coro.zig
@@ -27,6 +27,9 @@ pub const Task = @import("coro/Task.zig");
27
const sync = @import("coro/sync.zig");
28
pub const Semaphore = sync.Semaphore;
29
pub const ResetEvent = sync.ResetEvent;
30
+pub const Mutex = sync.Mutex;
31
+pub const RwLock = sync.RwLock;
32
+pub const Queue = sync.Queue;
33
34
// Aliases
35
pub const current = Task.current;
0 commit comments