diff options
| author | Tyge Løvset <[email protected]> | 2023-02-28 08:52:37 +0100 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2023-02-28 08:52:37 +0100 |
| commit | d3c93c2cbb9ffe83a162d32b1021eb24ec703a9c (patch) | |
| tree | 183ec4c49c6fc3c2215f7a5e8de31393e4b37a43 /include | |
| parent | 0fb86f00db4f1d3600ec1b91d0a4e2ef8f778164 (diff) | |
| download | STC-modified-d3c93c2cbb9ffe83a162d32b1021eb24ec703a9c.tar.gz STC-modified-d3c93c2cbb9ffe83a162d32b1021eb24ec703a9c.zip | |
Renamed cco_coroutine => overloaded cco_yield(coro, ctx, retval).
Diffstat (limited to 'include')
| -rw-r--r-- | include/stc/algo/coroutine.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/include/stc/algo/coroutine.h b/include/stc/algo/coroutine.h index 395a19cb..89ac9a35 100644 --- a/include/stc/algo/coroutine.h +++ b/include/stc/algo/coroutine.h @@ -79,18 +79,19 @@ enum { } \ return retval -#define cco_yield(retval) \ +#define cco_return \ do { \ - *_state = __LINE__; return retval; \ - case __LINE__:; \ + *_state = cco_state_final; goto cco_finish; \ } while (0) -#define cco_return \ +#define cco_yield(...) c_MACRO_OVERLOAD(cco_yield, __VA_ARGS__) +#define cco_yield_1(retval) \ do { \ - *_state = cco_state_final; goto cco_finish; \ + *_state = __LINE__; return retval; \ + case __LINE__:; \ } while (0) -#define cco_coroutine(corocall, ctx, retval) \ +#define cco_yield_3(corocall, ctx, retval) \ do { \ *_state = __LINE__; \ c_PASTE(cco, __LINE__): corocall; if (cco_alive(ctx)) return retval; \ |
