Added mlp runtime skeleton, flags to build it, syntax option to name sese blocks
[IRC.git] / Robust / src / Runtime / mlp_runtime.c
1 #include <stdlib.h>
2 #include <stdio.h>
3 #include "mlp_runtime.h"
4
5
6 struct SESE* root;
7
8
9 void mlpIssue();
10
11
12 struct SESE* mlpInit() {
13   return root;
14 }
15
16
17 void mlpEnqueue( struct SESE* sese ) {
18   printf( "mlp enqueue\n" );
19 }
20
21 void mlpBlock( struct SESE* sese ) {
22
23 }
24
25 void mlpNotifyExit( struct SESE* sese ) {
26   printf( "mlp notify exit\n" );
27 }
28
29 void mlpIssue() {
30
31 }