Changes in uspace/app/sbi/src/main.c [23de644:1ebc1a62] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/main.c
r23de644 r1ebc1a62 94 94 parse_module(&parse); 95 95 96 /* Check for parse errors. */97 96 if (parse.error) 98 97 return 1; … … 106 105 stype_module(&stype, program->module); 107 106 108 /* Check for typing errors. */109 107 if (stype.error) 110 108 return 1; … … 113 111 run_init(&run); 114 112 run_program(&run, program); 115 116 /* Check for run-time errors. */117 if (run.thread_ar->error)118 return 1;119 113 120 114 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.