1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
| #include "coroutine.h" #include <stdio.h>
struct arg { int num; scheduler_t *sched; coroutine_cond_t *cond; };
void producer(void *arg) { struct arg *p = (struct arg *)arg; scheduler_t *sched = p->sched; for (int i = 0; i < 3; i++) { printf("Producing %d %d\n", i, ++p->num); coroutine_cond_wait(sched, p->cond); } }
void consumer(void *arg) { struct arg *p = (struct arg *)arg; scheduler_t *sched = p->sched; for (int i = 0; i < 3; i++) { printf("Consuming %d %d\n", i, --p->num); coroutine_cond_signal(sched, p->cond); } }
void other(void *arg) { struct arg *p = (struct arg *)arg; scheduler_t *sched = p->sched; for (int i = 0; i < 3; i++) { printf("other %d\n", i); coroutine_yield(sched); } }
int main() { struct arg arg; scheduler_t *sched = coroutine_scheduler_create(); arg.sched = sched; arg.num = 10; coroutine_cond_t cond; coroutine_cond_init(&cond); arg.cond = &cond;
coroutine_create(sched, producer, &arg, 1 << 20); coroutine_create(sched, consumer, &arg, 1 << 20); coroutine_create(sched, other, &arg, 1 << 20);
coroutine_scheduler_run(sched); coroutine_scheduler_destroy(sched); return 0; }
|