* include/cygwin/ipc.h (IPC_KEY_IS_SHMID): Redefine to a more sensible
value.
This commit is contained in:
parent
e9054f3f7f
commit
378e5a0271
|
@ -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>
|
2004-06-02 Christopher Faylor <cgf@alum.bu.edu>
|
||||||
|
|
||||||
* cygheap.cc (cmalloc): Add debugging hook.
|
* cygheap.cc (cmalloc): Add debugging hook.
|
||||||
|
|
|
@ -32,12 +32,12 @@ struct ipc_perm
|
||||||
|
|
||||||
/* Mode bits:
|
/* 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_CREAT 0x0200 /* Create entry if key does not exist. */
|
||||||
#define IPC_EXCL 0x0400 /* Fail if key exists. */
|
#define IPC_EXCL 0x0400 /* Fail if key exists. */
|
||||||
#define IPC_NOWAIT 0x0800 /* Error if request must wait. */
|
#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:
|
/* Keys:
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue