summaryrefslogtreecommitdiff
path: root/exercises/085_async.zig
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2026-04-06 20:56:29 +0200
committerChris Boesch <chrboesch@noreply.codeberg.org>2026-04-06 20:56:29 +0200
commit3574fd3ae037f34510c6bb6657332b57447ac5b1 (patch)
treecb359b2d95b245aba70e5636fd3ea5f4648a4fd6 /exercises/085_async.zig
parent966c1f83af33f6b3f2312a2e4613247097f9ae38 (diff)
parent882c6aa0ab174f0d7a28a7804531611fcef98476 (diff)
Merge pull request 'Improvements for async-io' (#388) from async-improvements into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/388
Diffstat (limited to 'exercises/085_async.zig')
-rw-r--r--exercises/085_async.zig9
1 files changed, 5 insertions, 4 deletions
diff --git a/exercises/085_async.zig b/exercises/085_async.zig
index 48bda2b..1d885a5 100644
--- a/exercises/085_async.zig
+++ b/exercises/085_async.zig
@@ -7,10 +7,11 @@
// This interface uses a VTable pattern - a struct of function pointers -
// to abstract over different concurrency backends:
//
-// * Threaded - classic thread-pool based I/O
-// * Uring - Linux io_uring
-// * Kqueue - BSD/macOS
-// * Dispatch - macOS Grand Central Dispatch
+// * Threaded - thread-pool based I/O
+// * Evented - chooses the best event-loop backend for your OS:
+// * Uring on Linux (io_uring)
+// * Kqueue on BSD/macOS
+// * Dispatch on macOS (Grand Central Dispatch)
//
// The Io struct itself is tiny:
//