odyssey/src/mm.h

20 lines
226 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;
};
extern mm_t machinarium;
2017-03-21 09:47:32 +00:00
#endif