summaryrefslogtreecommitdiffhomepage
path: root/misc/examples/coroutines.c
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2023-03-17 14:53:05 +0100
committerTyge Løvset <[email protected]>2023-03-17 14:53:05 +0100
commit66429475ed6ac0deaba85989174e8880762d7888 (patch)
tree8254a179ae1ebac97a835bc098ec28db9b9d4bf5 /misc/examples/coroutines.c
parent8a99b38c611d771d1aa379529039077fa810d68a (diff)
downloadSTC-modified-66429475ed6ac0deaba85989174e8880762d7888.tar.gz
STC-modified-66429475ed6ac0deaba85989174e8880762d7888.zip
Reuse of coroutine context requires cco_reset of state.
Diffstat (limited to 'misc/examples/coroutines.c')
-rw-r--r--misc/examples/coroutines.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/misc/examples/coroutines.c b/misc/examples/coroutines.c
index 2c9e6d5c..b11b8532 100644
--- a/misc/examples/coroutines.c
+++ b/misc/examples/coroutines.c
@@ -85,6 +85,7 @@ bool combined(struct combined* C) {
// Reuse the C->prm context and extend the count:
C->prm.count = 8; C->prm.result += 2;
+ cco_reset(&C->prm);
cco_yield(prime(&C->prm), &C->prm, true);
cco_final: puts("final comb");