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 b5abf14 commit ec5c7daCopy full SHA for ec5c7da
README.md
@@ -27,7 +27,7 @@ Ideally, with either approach, this repository would transfer ownership to the s
27
28
The current implementation of `DispatchSemaphore` has some limitations. Blocking threads goes against the design goals of Swift Concurrency.
29
The `wait` function on `DispatchSemaphore` goes against this goal. Furthermore, most wasm targets run on a single thread from the web
30
-browser, so any time the `wait` function ends up blocking the calling thread, it would almost certainly hang a single-threaded wasm
+browser, so any time the `wait` function ends up blocking the calling thread, it would almost certainly freeze the single-threaded wasm
31
executable.
32
33
To navigate these issues, there are some limitations:
0 commit comments