Skip to content

Commit

Permalink
fix(lab4): fix wrong procmgr bootstrap
Browse files Browse the repository at this point in the history
Signed-off-by: Yiyang Wu <[email protected]>
  • Loading branch information
ToolmanP committed Oct 9, 2024
1 parent f2bfc72 commit 6e75c3f
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions Lab4/user/system-services/system-servers/procmgr/procmgr.c
Original file line number Diff line number Diff line change
Expand Up @@ -645,20 +645,10 @@ void boot_default_apps(void)

/* Start shell. */

char *userland_argv= "userland.bin";
char *test_ipc_argv= "test_ipc.bin";
(void)procmgr_launch_process(1,
&userland_argv,
"userland",
true,
INIT_BADGE,
NULL,
COMMON_APP,
NULL);

char *hello_world_argv= "hello_world.bin";
(void)procmgr_launch_process(1,
&hello_world_argv,
"hello_world",
&test_ipc_argv,
"test_ipc",
true,
INIT_BADGE,
NULL,
Expand Down

0 comments on commit 6e75c3f

Please sign in to comment.