summaryrefslogtreecommitdiff
path: root/libdiskfs
diff options
context:
space:
mode:
Diffstat (limited to 'libdiskfs')
-rw-r--r--libdiskfs/boot-start.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/libdiskfs/boot-start.c b/libdiskfs/boot-start.c
index d10d783f..6b829f2b 100644
--- a/libdiskfs/boot-start.c
+++ b/libdiskfs/boot-start.c
@@ -637,15 +637,18 @@ start_execserver (void)
assert_perror (err);
right = ports_get_send_right (execboot_info);
ports_port_deref (execboot_info);
- task_set_special_port (diskfs_exec_server_task, TASK_BOOTSTRAP_PORT, right);
- mach_port_deallocate (mach_task_self (), right);
+ err = task_set_special_port (diskfs_exec_server_task, TASK_BOOTSTRAP_PORT, right);
+ assert_perror (err);
+ err = mach_port_deallocate (mach_task_self (), right);
+ assert_perror (err);
if (_diskfs_boot_pause)
{
printf ("pausing for exec\n");
getc (stdin);
}
- task_resume (diskfs_exec_server_task);
+ err = task_resume (diskfs_exec_server_task);
+ assert_perror (err);
printf (" exec");
fflush (stdout);