Changeset 1c635d6 in mainline for uspace/app/vlaunch/vlaunch.c
- Timestamp:
- 2014-08-26T15:12:12Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade
- Children:
- 613d644
- Parents:
- df7f5cea
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/vlaunch/vlaunch.c
rdf7f5cea r1c635d6 94 94 95 95 task_id_t id; 96 int rc = task_spawnl(&id, app, app, winreg, NULL); 96 task_wait_t wait; 97 int rc = task_spawnl(&id, &wait, app, app, winreg, NULL); 97 98 if (rc != EOK) { 98 99 printf("%s: Error spawning %s %s (%s)\n", NAME, app, … … 103 104 task_exit_t texit; 104 105 int retval; 105 rc = task_wait( id, &texit, &retval);106 rc = task_wait(&wait, &texit, &retval); 106 107 if ((rc != EOK) || (texit != TASK_EXIT_NORMAL)) { 107 108 printf("%s: Error retrieving retval from %s (%s)\n", NAME,
Note:
See TracChangeset
for help on using the changeset viewer.