odyssey/sources/idle.h

21 lines
283 B
C
Raw Normal View History

2017-05-24 11:04:19 +00:00
#ifndef MM_IDLE_H
#define MM_IDLE_H
2017-04-10 13:03:15 +00:00
/*
* machinarium.
*
* cooperative multitasking engine.
*/
2017-05-24 11:04:19 +00:00
typedef struct mm_idle mm_idle_t;
2017-04-10 13:03:15 +00:00
typedef int (*mm_idle_callback_t)(mm_idle_t*);
2017-04-10 13:03:15 +00:00
2017-05-24 11:04:19 +00:00
struct mm_idle
{
2017-04-10 13:03:15 +00:00
mm_idle_callback_t callback;
void *arg;
};
2017-05-24 11:04:19 +00:00
#endif /* MM_IDLE_H */