blob: 72dd768ca35c23e933545ea5e7bf488951f287ff (
plain)
1
2
3
4
5
6
7
8
9
|
/* Internal API */
int mm_map_channel(channel* from, channel* to);
int routing_iteration();
void routing_stats();
void routing_cleanup();
/* Public backend API */
MM_API int mm_channel_event(channel* c, channel_value v);
|