]> git.saurik.com Git - apple/xnu.git/blobdiff - osfmk/kern/host.h
xnu-517.tar.gz
[apple/xnu.git] / osfmk / kern / host.h
index bf3800d508ab79ca41b41b780b690ae080ccc499..16fc1208d955a08b1446dd1fdc01932c56c9dfc2 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2000-2003 Apple Computer, Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
 #include <kern/lock.h>
 #include <kern/exception.h>
 #include <mach/exception_types.h>
+#include <mach/host_special_ports.h>
 #include <kern/kern_types.h>
 
 
 struct host {
        decl_mutex_data(,lock)          /* lock to protect exceptions */
-       ipc_port_t host_self;
-       ipc_port_t host_priv_self;
-       ipc_port_t host_security_self;
-       ipc_port_t io_master;
+       ipc_port_t special[HOST_MAX_SPECIAL_PORT + 1];
        struct exception_action exc_actions[EXC_TYPES_COUNT];
 };