summaryrefslogtreecommitdiffhomepage
path: root/src/cmds/ntux_cmd_spawn.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmds/ntux_cmd_spawn.c')
-rw-r--r--src/cmds/ntux_cmd_spawn.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/cmds/ntux_cmd_spawn.c b/src/cmds/ntux_cmd_spawn.c
index f488e3e..c4486fc 100644
--- a/src/cmds/ntux_cmd_spawn.c
+++ b/src/cmds/ntux_cmd_spawn.c
@@ -45,8 +45,11 @@ int ntux_cmd_spawn(const struct ntux_driver_ctx * dctx)
__sys_exit(0);
/* parent */
+ struct ntux_driver_ctx_impl * ictx = ntux_get_driver_ictx(dctx);
+
__sys_wait4(
- pid,&status,
+ pid,
+ &ictx->cctx.status,
0,0);
return 0;