diff options
author | leochanj <jbakita@cs.unc.edu> | 2020-10-20 21:46:20 -0400 |
---|---|---|
committer | leochanj <jbakita@cs.unc.edu> | 2020-10-20 21:46:20 -0400 |
commit | e2b50015cebdfba68699abd6e8575e38230f5a78 (patch) | |
tree | 8bc28e082ad58e5fec07de81fd7c7f9bd9db2686 /baseline/source/statemate/statemate.c | |
parent | 79f30887129145e15e5172e36a7d7602859fc932 (diff) | |
parent | dd606a16e840880e7617b140f6083af8ea83b6b7 (diff) |
Merge branch 'rtas20-wip' into sd-vbs
Diffstat (limited to 'baseline/source/statemate/statemate.c')
-rw-r--r-- | baseline/source/statemate/statemate.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/baseline/source/statemate/statemate.c b/baseline/source/statemate/statemate.c index 888d0fa..8239ed6 100644 --- a/baseline/source/statemate/statemate.c +++ b/baseline/source/statemate/statemate.c | |||
@@ -1273,14 +1273,12 @@ void _Pragma ( "entrypoint" ) statemate_main( void ) | |||
1273 | 1273 | ||
1274 | int main ( int argc, char **argv ) | 1274 | int main ( int argc, char **argv ) |
1275 | { | 1275 | { |
1276 | SET_UP | 1276 | SET_UP |
1277 | for (jobsComplete=0; jobsComplete<maxJobs; jobsComplete++){ | 1277 | for_each_job { |
1278 | START_LOOP | 1278 | statemate_init(); |
1279 | statemate_init(); | 1279 | statemate_main(); |
1280 | statemate_main(); | 1280 | } |
1281 | STOP_LOOP | 1281 | WRITE_TO_FILE |
1282 | } | ||
1283 | WRITE_TO_FILE | ||
1284 | 1282 | ||
1285 | return statemate_return(); | 1283 | return statemate_return(); |
1286 | } | 1284 | } |