summaryrefslogtreecommitdiffhomepage
path: root/docs/coroutine_api.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/coroutine_api.md')
-rw-r--r--docs/coroutine_api.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/coroutine_api.md b/docs/coroutine_api.md
index b356dcf0..6bd558f2 100644
--- a/docs/coroutine_api.md
+++ b/docs/coroutine_api.md
@@ -16,7 +16,7 @@ NB! ***cco_yield\*()*** / ***cco_await\*()*** may not be called from within a `s
| | Function / operator | Description |
|:----------|:-------------------------------------|:----------------------------------------|
|`cco_result` | `CCO_DONE`, `CCO_AWAIT`, `CCO_YIELD` | Default set of return values from coroutines |
-| | `cco_cleanup:` | Label for cleanup position in coroutine |
+| | `cco_final:` | Label for cleanup position in coroutine |
| `bool` | `cco_done(co)` | Is coroutine done? |
| | `cco_routine(co) {}` | The coroutine scope |
| | `cco_yield();` | Yield/suspend execution (return CCO_YIELD)|
@@ -101,13 +101,13 @@ int triples(struct triples* i) {
(int64_t)i->c * i->c)
{
if (i->c > i->max_c)
- cco_return; // "jump" to cco_cleanup if defined, else exit scope.
+ cco_return; // "jump" to cco_final if defined, else exit scope.
cco_yield();
}
}
}
}
- cco_cleanup:
+ cco_final:
puts("done");
}
return 0; // CCO_DONE
@@ -160,7 +160,7 @@ int gcd1_triples(struct gcd1_triples* i)
else
cco_yield();
}
- cco_cleanup:
+ cco_final:
cco_stop(&i->tri); // to cleanup state if still active
triples(&i->tri); // do cleanup (or no-op if done)
}
@@ -248,7 +248,7 @@ int produce_items(struct produce_items* p, cco_runtime* rt)
printf("produced %s\n", cstr_str(&p->str));
cco_yield();
}
- cco_cleanup:
+ cco_final:
cstr_drop(&p->str);
puts("done produce");
}
@@ -273,7 +273,7 @@ int consume_items(struct consume_items* c, cco_runtime* rt)
print_time();
printf("consumed %s\n", cstr_str(&c->produce.str));
}
- cco_cleanup:
+ cco_final:
cco_stop(&c->produce);
cco_resume_task(&c->produce, rt);
puts("done consume");