summaryrefslogtreecommitdiff
path: root/kern/machine.c
diff options
context:
space:
mode:
Diffstat (limited to 'kern/machine.c')
-rw-r--r--kern/machine.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/kern/machine.c b/kern/machine.c
index bf9677c9..c9e368a0 100644
--- a/kern/machine.c
+++ b/kern/machine.c
@@ -674,3 +674,11 @@ host_get_boot_info(
(void) strncpy(boot_info, src, KERNEL_BOOT_INFO_MAX);
return KERN_SUCCESS;
}
+
+kern_return_t
+host_get_kernel_boot_info(
+ host_t priv_host,
+ kernel_boot_info_t boot_info)
+{
+ return host_get_boot_info(priv_host, boot_info);
+}