]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/sys/ipcs.h
xnu-7195.81.3.tar.gz
[apple/xnu.git] / bsd / sys / ipcs.h
index 38e99b62d918f92c42bda735c8fc98bd920aabb9..3d119bde87d39071d447232467a32c62d08aa299 100644 (file)
@@ -1,8 +1,8 @@
 /*
- * Copyright (c) 2004-2005 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2004-2006 Apple Computer, Inc. All rights reserved.
  *
  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
- * 
+ *
  * This file contains Original Code and/or Modifications of Original Code
  * as defined in and that are subject to the Apple Public Source License
  * Version 2.0 (the 'License'). You may not use this file except in
  * unlawful or unlicensed copies of an Apple operating system, or to
  * circumvent, violate, or enable the circumvention or violation of, any
  * terms of an Apple operating system software license agreement.
- * 
+ *
  * Please obtain a copy of the License at
  * http://www.opensource.apple.com/apsl/ and read it before using this file.
- * 
+ *
  * The Original Code and all software distributed under the License are
  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
@@ -22,7 +22,7 @@
  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
  * Please see the License for the specific language governing rights and
  * limitations under the License.
- * 
+ *
  * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
  */
 /*
@@ -37,7 +37,7 @@
 #include <sys/appleapiopts.h>
 #include <sys/cdefs.h>
 
-#define        IPCS_MAGIC      0x00000001      /* Version */
+#define IPCS_MAGIC      0x00000001      /* Version */
 
 /*
  * IPCS_command
  */
 
 struct IPCS_command {
-       int             ipcs_magic;     /* Magic number for struct layout */
-       int             ipcs_op;        /* Operation to perform */
-       int             ipcs_cursor;    /* Cursor for iteration functions */
-       int             ipcs_datalen;   /* Length of ipcs_data area */
-       void            *ipcs_data;     /* OP specific data */
+       int             ipcs_magic;     /* Magic number for struct layout */
+       int             ipcs_op;        /* Operation to perform */
+       int             ipcs_cursor;    /* Cursor for iteration functions */
+       int             ipcs_datalen;   /* Length of ipcs_data area */
+       void            *ipcs_data;     /* OP specific data */
 };
 
 #ifdef KERNEL_PRIVATE
 #include <machine/types.h>
 
-#if __DARWIN_ALIGN_NATURAL
-#pragma options align=natural
-#endif
-
 struct user_IPCS_command {
-       int             ipcs_magic;     /* Magic number for struct layout */
-       int             ipcs_op;        /* Operation to perform */
-       int             ipcs_cursor;    /* Cursor for iteration functions */
-       int             ipcs_datalen;   /* Length of ipcs_data area */
-       user_addr_t     ipcs_data;      /* OP specific data */
+       int             ipcs_magic;     /* Magic number for struct layout */
+       int             ipcs_op;        /* Operation to perform */
+       int             ipcs_cursor;    /* Cursor for iteration functions */
+       int             ipcs_datalen;   /* Length of ipcs_data area */
+       user_addr_t     ipcs_data;      /* OP specific data */
 };
 
-#if __DARWIN_ALIGN_NATURAL
-#pragma options align=reset
-#endif
+struct user32_IPCS_command {
+       int             ipcs_magic;     /* Magic number for struct layout */
+       int             ipcs_op;        /* Operation to perform */
+       int             ipcs_cursor;    /* Cursor for iteration functions */
+       int             ipcs_datalen;   /* Length of ipcs_data area */
+       user32_addr_t   ipcs_data;      /* OP specific data */
+};
 
 #endif /* KERNEL_PRIVATE */
 
 /*
  * OP code values for 'ipcs_op'
  */
-#define IPCS_SHM_CONF  0x00000001      /* Obtain shared memory config */
-#define IPCS_SHM_ITER  0x00000002      /* Iterate shared memory info */
+#define IPCS_SHM_CONF   0x00000001      /* Obtain shared memory config */
+#define IPCS_SHM_ITER   0x00000002      /* Iterate shared memory info */
 
-#define IPCS_SEM_CONF  0x00000010      /* Obtain semaphore config */
-#define IPCS_SEM_ITER  0x00000020      /* Iterate semaphore info */
+#define IPCS_SEM_CONF   0x00000010      /* Obtain semaphore config */
+#define IPCS_SEM_ITER   0x00000020      /* Iterate semaphore info */
 
-#define IPCS_MSG_CONF  0x00000100      /* Obtain message queue config */
-#define IPCS_MSG_ITER  0x00000200      /* Iterate message queue info */
+#define IPCS_MSG_CONF   0x00000100      /* Obtain message queue config */
+#define IPCS_MSG_ITER   0x00000200      /* Iterate message queue info */
 
 /*
  * Sysctl oid name values
  */
-#define IPCS_SHM_SYSCTL        "kern.sysv.ipcs.shm"
-#define IPCS_SEM_SYSCTL        "kern.sysv.ipcs.sem"
-#define IPCS_MSG_SYSCTL        "kern.sysv.ipcs.msg"
+#define IPCS_SHM_SYSCTL "kern.sysv.ipcs.shm"
+#define IPCS_SEM_SYSCTL "kern.sysv.ipcs.sem"
+#define IPCS_MSG_SYSCTL "kern.sysv.ipcs.msg"
 
 
-#endif /* _SYS_IPCS_H_ */
+#endif  /* _SYS_IPCS_H_ */