* cygwin_ipc.h: Move to "include/cygwin/ipc.h".

* cygwin_shm.h: Move to "include/cygwin/shm.h".
	* include/cygwin/ipc.h: New file.
	* include/cygwin/shm.h: New file.
	* ipc.c:c Update <cygwin/ipc.h> include.
	* cygserver_shm.cc: Update <cygwin/shm.h> include.
	* shm.cc: Ditto.
This commit is contained in:
Conrad Scott 2002-09-21 13:03:24 +00:00
parent 01f58e415c
commit 9fc5ba9656
7 changed files with 17 additions and 7 deletions

View File

@ -37,10 +37,10 @@ details. */
//#include "thread.h"
#ifndef __INSIDE_CYGWIN__
#define __INSIDE_CYGWIN__
#include "cygwin_shm.h"
#include <cygwin/shm.h>
#undef __INSIDE_CYGWIN__
#else
#include "cygwin_shm.h"
#include <cygwin/shm.h>
#endif
//#include "perprocess.h"
#include <threaded_queue.h>

View File

@ -1,3 +1,13 @@
2002-09-21 Conrad Scott <conrad.scott@dsl.pipex.com>
* cygwin_ipc.h: Move to "include/cygwin/ipc.h".
* cygwin_shm.h: Move to "include/cygwin/shm.h".
* include/cygwin/ipc.h: New file.
* include/cygwin/shm.h: New file.
* ipc.c:c Update <cygwin/ipc.h> include.
* cygserver_shm.cc: Update <cygwin/shm.h> include.
* shm.cc: Ditto.
2002-09-21 Robert Collins <rbtcollins@hotmail.com>
* pthread.cc: Use class::call for converted pthread and semaphore

View File

@ -37,10 +37,10 @@ details. */
//#include "thread.h"
#ifndef __INSIDE_CYGWIN__
#define __INSIDE_CYGWIN__
#include "cygwin_shm.h"
#include <cygwin/shm.h>
#undef __INSIDE_CYGWIN__
#else
#include "cygwin_shm.h"
#include <cygwin/shm.h>
#endif
//#include "perprocess.h"
#include <threaded_queue.h>

View File

View File

@ -17,7 +17,7 @@ extern "C"
#ifndef _SYS_SHM_H
#define _SYS_SHM_H
#include "cygwin_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

View File

@ -11,7 +11,7 @@
details. */
#include "winsup.h"
#include "cygwin_ipc.h"
#include <cygwin/ipc.h>
#include <sys/stat.h>
extern "C"

View File

@ -22,7 +22,7 @@ details. */
#include "cygheap.h"
#include <stdio.h>
#include "thread.h"
#include "cygwin_shm.h"
#include <cygwin/shm.h>
#include "cygserver_shm.h"
// FIXME IS THIS CORRECT