OSDN Git Service

Use cygwin_{shm,ipc}.h instead of /sys/{shm,ipc}.h throughout.
authorcgf <cgf>
Sun, 23 Jun 2002 22:56:56 +0000 (22:56 +0000)
committercgf <cgf>
Sun, 23 Jun 2002 22:56:56 +0000 (22:56 +0000)
* sys/ipc.h: Remove.
* sys/shm.h: Remove.
* cygwin_ipc.h: New file.
* cygwin_shm.h: New file.

winsup/cygserver/shm.cc
winsup/cygwin/ChangeLog
winsup/cygwin/cygserver_shm.cc
winsup/cygwin/cygwin_ipc.h [moved from winsup/cygwin/include/sys/ipc.h with 100% similarity, mode: 0755]
winsup/cygwin/cygwin_shm.h [moved from winsup/cygwin/include/sys/shm.h with 98% similarity, mode: 0755]
winsup/cygwin/ipc.cc
winsup/cygwin/shm.cc

index 1116bc8..dc56323 100644 (file)
@@ -37,10 +37,10 @@ details. */
 //#include "thread.h"
 #ifndef __INSIDE_CYGWIN__
 #define __INSIDE_CYGWIN__
-#include <sys/shm.h>
+#include "cygwin_shm.h"
 #undef __INSIDE_CYGWIN__
 #else
-#include <sys/shm.h>
+#include "cygwin_shm.h"
 #endif
 //#include "perprocess.h"
 #include <threaded_queue.h>
index 8c4f46f..24c2c8b 100644 (file)
@@ -1,5 +1,13 @@
 2002-06-23  Christopher Faylor  <cgf@redhat.com>
 
+       Use cygwin_{shm,ipc}.h instead of /sys/{shm,ipc}.h throughout.
+       * sys/ipc.h: Remove.
+       * sys/shm.h: Remove.
+       * cygwin_ipc.h: New file.
+       * cygwin_shm.h: New file.
+
+2002-06-23  Christopher Faylor  <cgf@redhat.com>
+
        * cygwin.sc: Add recent changes from ld sources.
 
 2002-06-23  Conrad Scott  <conrad.scott@dsl.pipex.com>
index 1116bc8..dc56323 100755 (executable)
@@ -37,10 +37,10 @@ details. */
 //#include "thread.h"
 #ifndef __INSIDE_CYGWIN__
 #define __INSIDE_CYGWIN__
-#include <sys/shm.h>
+#include "cygwin_shm.h"
 #undef __INSIDE_CYGWIN__
 #else
-#include <sys/shm.h>
+#include "cygwin_shm.h"
 #endif
 //#include "perprocess.h"
 #include <threaded_queue.h>
old mode 100644 (file)
new mode 100755 (executable)
similarity index 100%
rename from winsup/cygwin/include/sys/ipc.h
rename to winsup/cygwin/cygwin_ipc.h
old mode 100644 (file)
new mode 100755 (executable)
similarity index 98%
rename from winsup/cygwin/include/sys/shm.h
rename to winsup/cygwin/cygwin_shm.h
index 208c5f2..a3aa2f4
@@ -17,7 +17,7 @@ extern "C"
 #ifndef _SYS_SHM_H
 #define _SYS_SHM_H
 
-#include <sys/ipc.h>
+#include "cygwin_ipc.h"
 
 #define SHM_RDONLY 1
 /* 64 Kb was hardcoded for x86. MS states this may change, but we need it in the header
index 1f496d3..65924b3 100644 (file)
@@ -11,7 +11,7 @@
    details. */
 
 #include "winsup.h"
-#include <sys/ipc.h>
+#include "cygwin_ipc.h"
 #include <sys/stat.h>
 
 extern "C"
index baea3a6..c71c940 100644 (file)
@@ -22,7 +22,7 @@ details. */
 #include "cygheap.h"
 #include <stdio.h>
 #include "thread.h"
-#include <sys/shm.h>
+#include "cygwin_shm.h"
 #include "cygserver_shm.h"
 
 // FIXME IS THIS CORRECT