]> 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 7592dc95193aef2f29c2a2e613e90a903ba479a7..3d119bde87d39071d447232467a32c62d08aa299 100644 (file)
@@ -1,23 +1,29 @@
 /*
- * Copyright (c) 2004-2005 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2004-2006 Apple Computer, Inc. All rights reserved.
  *
- * @APPLE_LICENSE_HEADER_START@
- * 
- * The contents of this file constitute Original Code as defined in and
- * are subject to the Apple Public Source License Version 1.1 (the
- * "License").  You may not use this file except in compliance with the
- * License.  Please obtain a copy of the License at
- * http://www.apple.com/publicsource and read it before using this file.
- * 
- * This Original Code and all software distributed under the License are
- * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
+ * @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
+ * compliance with the License. The rights granted to you under the License
+ * may not be used to create, or enable the creation or redistribution of,
+ * 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,
  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT.  Please see the
- * License for the specific language governing rights and limitations
- * under the License.
- * 
- * @APPLE_LICENSE_HEADER_END@
+ * 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@
  */
 /*
  * NOTE: Internal ipcs.h header; all interfaces are private; if you want this
@@ -31,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>
 
 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 */
+};
+
+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 */
@@ -66,21 +80,21 @@ struct user_IPCS_command {
 /*
  * 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_ */