diff options
Diffstat (limited to 'boot-proxy-exc/bootstrap_S.h')
-rw-r--r-- | boot-proxy-exc/bootstrap_S.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/boot-proxy-exc/bootstrap_S.h b/boot-proxy-exc/bootstrap_S.h new file mode 100644 index 00000000..a93c8052 --- /dev/null +++ b/boot-proxy-exc/bootstrap_S.h @@ -0,0 +1,33 @@ +#ifndef _bootstrap_server_ +#define _bootstrap_server_ + +/* Module bootstrap */ + +#include <mach/kern_return.h> +#include <mach/port.h> +#include <mach/message.h> + +#include <mach/std_types.h> + +/* Routine bootstrap_privileged_ports */ +#ifdef mig_external +mig_external +#else +extern +#endif +kern_return_t do_bootstrap_privileged_ports +#if defined(LINTLIBRARY) + (bootstrap, priv_host, priv_device) + mach_port_t bootstrap; + mach_port_t *priv_host; + mach_port_t *priv_device; +{ return do_bootstrap_privileged_ports(bootstrap, priv_host, priv_device); } +#else +( + mach_port_t bootstrap, + mach_port_t *priv_host, + mach_port_t *priv_device +); +#endif + +#endif /* not defined(_bootstrap_server_) */ |