mirror of https://github.com/yandex/odyssey.git
19 lines
201 B
C
19 lines
201 B
C
![]() |
#ifndef FT_OP_H_
|
||
|
#define FT_OP_H_
|
||
|
|
||
|
/*
|
||
|
* flint.
|
||
|
*
|
||
|
* Cooperative multitasking engine.
|
||
|
*/
|
||
|
|
||
|
typedef struct ftop ftop;
|
||
|
|
||
|
struct ftop {
|
||
|
int active;
|
||
|
void (*cancel)(ftop*, void*);
|
||
|
void *arg;
|
||
|
};
|
||
|
|
||
|
#endif
|