Changeset f4f866c in mainline for uspace/app/sbi/src
- Timestamp:
- 2010-04-23T21:42:26Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6c39a907
- Parents:
- 38aaacc2 (diff), 80badbe (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- uspace/app/sbi/src
- Files:
-
- 2 edited
-
os/helenos.c (modified) (2 diffs)
-
run_expr.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/os/helenos.c
r38aaacc2 rf4f866c 35 35 #include <task.h> 36 36 #include <tinput.h> 37 #include <str_error.h> 37 38 38 39 #include "os.h" … … 186 187 int retval; 187 188 188 tid = task_spawn(cmd[0], (char const * const *) cmd );189 tid = task_spawn(cmd[0], (char const * const *) cmd, &retval); 189 190 if (tid == 0) { 190 printf("Error: Failed spawning '%s'.\n", cmd[0]); 191 printf("Error: Failed spawning '%s' (%s).\n", cmd[0], 192 str_error(retval)); 191 193 exit(1); 192 194 } -
uspace/app/sbi/src/run_expr.c
r38aaacc2 rf4f866c 1434 1434 addr_prop->u.named->prop_d = deleg_p; 1435 1435 break; 1436 default: 1437 ritem = NULL; 1436 1438 } 1437 1439
Note:
See TracChangeset
for help on using the changeset viewer.
