]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/sys/posix_sem.h
xnu-6153.81.5.tar.gz
[apple/xnu.git] / bsd / sys / posix_sem.h
index 1d416d12f27a080b3caf5d9d1289db7aa66fbab8..793511a70dda1e92a56b2ebd64d921762132fc44 100644 (file)
@@ -1,9 +1,8 @@
-
 /*
  * Copyright (c) 1999-2003 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,
@@ -23,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@
  */
 /*
@@ -42,7 +41,7 @@
  *
  */
 
-#ifndef        _SYS_POSIX_SEM_H_
+#ifndef _SYS_POSIX_SEM_H_
 #define _SYS_POSIX_SEM_H_
 
 #include <sys/appleapiopts.h>
 
 struct label;
 
-#define        PSEMNAMLEN      31      /* maximum name segment length we bother with */
+#define PSEMNAMLEN      31      /* maximum name segment length we bother with */
 
 struct pseminfo {
-       unsigned int    psem_flags;
-       unsigned int    psem_usecount;
-       mode_t          psem_mode;
-       uid_t           psem_uid;
-       gid_t           psem_gid;
-       char            psem_name[PSEMNAMLEN + 1];      /* segment name */
-       void *          psem_semobject;
+       unsigned int    psem_flags;
+       unsigned int    psem_usecount;
+       mode_t          psem_mode;
+       uid_t           psem_uid;
+       gid_t           psem_gid;
+       char            psem_name[PSEMNAMLEN + 1];      /* segment name */
+       void *          psem_semobject;
        struct label *  psem_label;
-       pid_t           psem_creator_pid;
-       uint64_t        psem_creator_uniqueid;
+       pid_t           psem_creator_pid;
+       uint64_t        psem_creator_uniqueid;
 };
 
 #define PSEMINFO_NULL (struct pseminfo *)0
 
-#define        PSEM_NONE       1
-#define        PSEM_DEFINED    2
-#define        PSEM_ALLOCATED  4
-#define        PSEM_MAPPED     8
-#define        PSEM_INUSE      0x10
-#define        PSEM_REMOVED    0x20
-#define        PSEM_INCREATE   0x40
-#define        PSEM_INDELETE   0x80
+#define PSEM_NONE       1
+#define PSEM_DEFINED    2
+#define PSEM_ALLOCATED  4
+#define PSEM_MAPPED     8
+#define PSEM_INUSE      0x10
+#define PSEM_REMOVED    0x20
+#define PSEM_INCREATE   0x40
+#define PSEM_INDELETE   0x80
 
 #endif