From 58f8df66d57fec4b0d8d69df7ac26624194b86ad Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Sat, 4 Apr 2026 16:05:35 +0200 Subject: improvements for async-io --- exercises/085_async.zig | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'exercises/085_async.zig') 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: // -- cgit v1.2.3