aboutsummaryrefslogtreecommitdiff
path: root/kern/machine.c
diff options
context:
space:
mode:
Diffstat (limited to 'kern/machine.c')
-rw-r--r--kern/machine.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/kern/machine.c b/kern/machine.c
index c9e368a0..0aa0f3c6 100644
--- a/kern/machine.c
+++ b/kern/machine.c
@@ -659,26 +659,3 @@ processor_assign(
}
#endif /* NCPUS > 1 */
-
-kern_return_t
-host_get_boot_info(
- host_t priv_host,
- kernel_boot_info_t boot_info)
-{
- char *src = "";
-
- if (priv_host == HOST_NULL) {
- return KERN_INVALID_HOST;
- }
-
- (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);
-}