odyssey/sources/mm.h

23 lines
313 B
C
Raw Normal View History

2017-05-24 11:04:19 +00:00
#ifndef MM_H
#define MM_H
2017-03-21 09:47:32 +00:00
/*
* machinarium.
*
* cooperative multitasking engine.
*/
2017-05-24 11:04:19 +00:00
typedef struct mm mm_t;
2017-05-24 11:04:19 +00:00
struct mm
{
mm_machinemgr_t machine_mgr;
mm_msgcache_t msg_cache;
mm_coroutine_cache_t coroutine_cache;
mm_taskmgr_t task_mgr;
};
extern mm_t machinarium;
2017-05-24 11:04:19 +00:00
#endif /* MM_H */