diff options
author | Casper Beyer <caspervonb@pm.me> | 2020-10-24 22:05:30 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-24 16:05:30 +0200 |
commit | 9adbca6d195b8ea9ad1474ebbb6f906069d6b130 (patch) | |
tree | 9bc337933075e21ccfdc28d1039651ce2e36f20d | |
parent | 2a83b223857722ffe63aeaa35b44aec8659a910d (diff) |
docs(std/wasi): mark sched_yield as implemented (#8055)
This marks sched_yield as implemented, it is a no-op but will probably
always be and we have passing tests for it.
-rw-r--r-- | std/wasi/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/wasi/README.md b/std/wasi/README.md index bfc5c801e..1f78e9ac7 100644 --- a/std/wasi/README.md +++ b/std/wasi/README.md @@ -46,7 +46,7 @@ This module provides an implementation of the WebAssembly System Interface. - [x] poll_oneoff - [x] proc_exit - [ ] proc_raise -- [ ] sched_yield +- [x] sched_yield - [x] random_get - [ ] sock_recv - [ ] sock_send |