Changeset 7e38970d in mainline for uspace/app/init/init.c
- Timestamp:
- 2020-12-07T00:08:37Z (4 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 25f26600
- Parents:
- 7a873f0 (diff), 8596474 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/init/init.c
r7a873f0 r7e38970d 277 277 } 278 278 279 static int app_start(const char *app )279 static int app_start(const char *app, const char *arg) 280 280 { 281 281 printf("%s: Spawning %s\n", NAME, app); … … 283 283 task_id_t id; 284 284 task_wait_t wait; 285 errno_t rc = task_spawnl(&id, &wait, app, app, NULL);285 errno_t rc = task_spawnl(&id, &wait, app, app, arg, NULL); 286 286 if (rc != EOK) { 287 287 oom_check(rc, app); … … 471 471 rc = display_server(); 472 472 if (rc == EOK) { 473 app_start("/app/ barber");474 app_start("/app/ vlaunch");475 app_start("/app/ vterm");473 app_start("/app/launcher", NULL); 474 app_start("/app/barber", NULL); 475 app_start("/app/terminal", "-topleft"); 476 476 } 477 477 }
Note:
See TracChangeset
for help on using the changeset viewer.