mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-10 13:18:42 +00:00
27 lines
633 B
C
27 lines
633 B
C
/*
|
|
* BIRD Coroutines
|
|
*
|
|
* (c) 2017 Martin Mares <mj@ucw.cz>
|
|
* (c) 2020 Maria Matejka <mq@jmq.cz>
|
|
*
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
*/
|
|
|
|
#ifndef _BIRD_CORO_H_
|
|
#define _BIRD_CORO_H_
|
|
|
|
#include "lib/resource.h"
|
|
|
|
/* A completely opaque coroutine handle. */
|
|
struct coroutine;
|
|
|
|
/* Coroutines are independent threads bound to pools.
|
|
* You request a coroutine by calling coro_run().
|
|
* It is forbidden to free a running coroutine from outside.
|
|
* The running coroutine must free itself by rfree() before returning.
|
|
*/
|
|
struct coroutine *coro_run(pool *, void (*entry)(void *), void *data);
|
|
|
|
|
|
#endif
|