+#ifdef KERNEL
+/* LP64 version of iso_args. all pointers
+ * grow when we're dealing with a 64-bit process.
+ * WARNING - keep in sync with iso_args
+ */
+/* LP64todo - should this move? */
+
+#if __DARWIN_ALIGN_NATURAL
+#pragma options align=natural
+#endif
+
+struct user_iso_args {
+ int flags; /* mounting flags, see below */
+ int ssector; /* starting sector, 0 for 1st session */
+ int toc_length; /* Size of *toc, including the toc.length field */
+ user_addr_t toc;
+};
+
+#if __DARWIN_ALIGN_NATURAL
+#pragma options align=reset
+#endif
+
+#endif /* KERNEL */
+