X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/4452a7af2eac33dbad800bcc91f2399d62c18f53..2a1bd2d3eef5c7a7bb14f4bb9fdbca9a96ee4752:/bsd/sys/ipcs.h?ds=sidebyside diff --git a/bsd/sys/ipcs.h b/bsd/sys/ipcs.h index f30abbfe2..3d119bde8 100644 --- a/bsd/sys/ipcs.h +++ b/bsd/sys/ipcs.h @@ -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 @@ -11,10 +11,10 @@ * 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 #include -#define IPCS_MAGIC 0x00000001 /* Version */ +#define IPCS_MAGIC 0x00000001 /* Version */ /* * IPCS_command @@ -49,22 +49,30 @@ */ 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 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 */ @@ -72,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_ */