Changeset 23de644 in mainline for uspace/app/sbi/src/main.c
- Timestamp:
- 2010-04-04T22:31:01Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 074444f, ecb6ac32
- Parents:
- 3aae4e8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/main.c
r3aae4e8 r23de644 94 94 parse_module(&parse); 95 95 96 /* Check for parse errors. */ 96 97 if (parse.error) 97 98 return 1; … … 105 106 stype_module(&stype, program->module); 106 107 108 /* Check for typing errors. */ 107 109 if (stype.error) 108 110 return 1; … … 111 113 run_init(&run); 112 114 run_program(&run, program); 115 116 /* Check for run-time errors. */ 117 if (run.thread_ar->error) 118 return 1; 113 119 114 120 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.