odyssey/src/mm.h

21 lines
253 B
C
Raw Normal View History

#ifndef MM_H_
#define MM_H_
2017-03-21 09:47:32 +00:00
/*
* machinarium.
*
* cooperative multitasking engine.
*/
typedef struct mm_t mm_t;
struct mm_t {
mm_machinemgr_t machine_mgr;
mm_msgpool_t msg_pool;
2017-05-23 12:34:35 +00:00
mm_taskmgr_t task_mgr;
};
extern mm_t machinarium;
2017-03-21 09:47:32 +00:00
#endif