diff options
Diffstat (limited to 'misc')
| -rw-r--r-- | misc/examples/coroutines.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/examples/coroutines.c b/misc/examples/coroutines.c index 867d02a8..577ef8c1 100644 --- a/misc/examples/coroutines.c +++ b/misc/examples/coroutines.c @@ -77,12 +77,12 @@ struct combine { bool combine(struct combine* C) { cco_begin(C); - cco_coroutine(prime(&C->prm), &C->prm, true); - cco_coroutine(fibonacci(&C->fib), &C->fib, true); + cco_yield(prime(&C->prm), &C->prm, true); + cco_yield(fibonacci(&C->fib), &C->fib, true); // Reuse the C->prm context and extend the count: C->prm.count = 20; - cco_coroutine(prime(&C->prm), &C->prm, true); + cco_yield(prime(&C->prm), &C->prm, true); cco_final: puts("final"); cco_end(false); |
