]> sourceware.org Git - newlib-cygwin.git/commitdiff
* include/cygwin/ipc.h (IPC_KEY_IS_SHMID): Redefine to a more sensible
authorCorinna Vinschen <corinna@vinschen.de>
Thu, 3 Jun 2004 19:51:10 +0000 (19:51 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Thu, 3 Jun 2004 19:51:10 +0000 (19:51 +0000)
value.

winsup/cygwin/ChangeLog
winsup/cygwin/include/cygwin/ipc.h

index 11b948cd6f84567dbb8c6eb9a69ed9b3f233bead..7667b0847821049ad768f49303dfb8ecc7377288 100644 (file)
@@ -1,3 +1,8 @@
+2004-06-03  Corinna Vinschen  <corinna@vinschen.de>
+
+       * include/cygwin/ipc.h (IPC_KEY_IS_SHMID): Redefine to a more sensible
+       value.
+
 2004-06-02  Christopher Faylor  <cgf@alum.bu.edu>
 
        * cygheap.cc (cmalloc): Add debugging hook.
index d0f5beaa11c349cd9598a3f6016a4be7b9bf38ec..7b04653d381f0a41f58123a74bf5d7845cb5d0b5 100644 (file)
@@ -32,12 +32,12 @@ struct ipc_perm
 
 /* Mode bits:
  */
-#ifdef _KERNEL
-#define IPC_KEY_IS_SHMID 0x0100        /* Used in shmget when called from shmat. */
-#endif
 #define IPC_CREAT  0x0200      /* Create entry if key does not exist. */
 #define IPC_EXCL   0x0400      /* Fail if key exists. */
 #define IPC_NOWAIT 0x0800      /* Error if request must wait. */
+#ifdef _KERNEL
+#define IPC_KEY_IS_SHMID 0x1000        /* Used in shmget when called from shmat. */
+#endif
 
 /* Keys:
  */
This page took 0.037487 seconds and 5 git commands to generate.