blob: a93c8052e08e294d6767a6ae61e324a0017990b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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_) */
|