Changeset 1c635d6 in mainline for uspace/app/init/init.c
- Timestamp:
- 2014-08-26T15:12:12Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 613d644
- Parents:
- df7f5cea
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/init/init.c
rdf7f5cea r1c635d6 172 172 va_start(ap, path); 173 173 task_id_t id; 174 int rc = task_spawn(&id, path, cnt, ap); 174 task_wait_t wait; 175 int rc = task_spawn(&id, &wait, path, cnt, ap); 175 176 va_end(ap); 176 177 … … 189 190 task_exit_t texit; 190 191 int retval; 191 rc = task_wait( id, &texit, &retval);192 rc = task_wait(&wait, &texit, &retval); 192 193 if (rc != EOK) { 193 194 printf("%s: Error waiting for %s (%s)\n", NAME, path, … … 253 254 254 255 task_id_t id; 255 int rc = task_spawnl(&id, app, app, winreg, NULL); 256 task_wait_t wait; 257 int rc = task_spawnl(&id, &wait, app, app, winreg, NULL); 256 258 if (rc != EOK) { 257 259 printf("%s: Error spawning %s %s (%s)\n", NAME, app, … … 262 264 task_exit_t texit; 263 265 int retval; 264 rc = task_wait( id, &texit, &retval);266 rc = task_wait(&wait, &texit, &retval); 265 267 if ((rc != EOK) || (texit != TASK_EXIT_NORMAL)) { 266 268 printf("%s: Error retrieving retval from %s (%s)\n", NAME, … … 278 280 APP_GETTERM, svc, LOCFS_MOUNT_POINT, app); 279 281 280 int rc = task_spawnl(NULL, APP_GETTERM, APP_GETTERM, svc,282 int rc = task_spawnl(NULL, NULL, APP_GETTERM, APP_GETTERM, svc, 281 283 LOCFS_MOUNT_POINT, "--msg", "--wait", "--", app, NULL); 282 284 if (rc != EOK) … … 287 289 APP_GETTERM, svc, LOCFS_MOUNT_POINT, app); 288 290 289 int rc = task_spawnl(NULL, APP_GETTERM, APP_GETTERM, svc,291 int rc = task_spawnl(NULL, NULL, APP_GETTERM, APP_GETTERM, svc, 290 292 LOCFS_MOUNT_POINT, "--wait", "--", app, NULL); 291 293 if (rc != EOK)
Note:
See TracChangeset
for help on using the changeset viewer.