| #ifndef CX_MLEMOS_PROCESS_H_INCLUDED#define CX_MLEMOS_PROCESS_H_INCLUDED#include "event.h"#include "kernel.h"#include "coroutine.h"#include "exception.h"typedef struct cm_process_s {    cm_event_t event;    cm_coroutine_t coroutine;} cm_process_t;#endif
 |