diff options
| author | Tyge Lovset <[email protected]> | 2023-05-09 16:30:08 +0200 |
|---|---|---|
| committer | Tyge Lovset <[email protected]> | 2023-05-09 16:30:08 +0200 |
| commit | 992950d20096848f606525dffc96c74bda52c543 (patch) | |
| tree | f562c064ba50e9f2cdd769ecdcc9be43c9a7abfd /docs | |
| parent | 99d94309f31f082b505180d2cb7c1c6c2215e9f0 (diff) | |
| download | STC-modified-992950d20096848f606525dffc96c74bda52c543.tar.gz STC-modified-992950d20096848f606525dffc96c74bda52c543.zip | |
Renaming.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ccommon_api.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/ccommon_api.md b/docs/ccommon_api.md index 93ad2bb7..e4c881dd 100644 --- a/docs/ccommon_api.md +++ b/docs/ccommon_api.md @@ -361,12 +361,12 @@ To resume the coroutine from where it was suspended with *cco_yield()*, simply c | | `cco_end(ret)` | End coroutine block and return ret | | | `cco_yield()` | Yield/suspend execution | | | `cco_yield(ret)` | Yield/suspend execution and return ret | -| | `cco_yield_at(co, call)` | Yield at co call if it is suspended | -| | `cco_yield_at(co, call, ret)` | Yield at co call with ret if suspended | +| | `cco_yield_coro(co, call)` | Yield at co call if it is suspended | +| | `cco_yield_coro(co, call, ret)` | Yield at co call with ret if suspended | | | `cco_await(promise)` | Await/suspend until promise is true | | | `cco_await(promise, ret)` | Await/suspend with ret value | -| | `cco_await_at(co, call)` | Await for co call to finish | -| | `cco_await_at(co, call, ret)` | Await for co call to finish with ret | +| | `cco_await_coro(co, call)` | Await for co call to finish | +| | `cco_await_coro(co, call, ret)` | Await for co call to finish with ret | | | Semaphores: | | | | `csem` | Semaphore type | | | `cco_await_sem(sem)` | Await for the semaphore count > 0 | |
