diff options
Diffstat (limited to 'src/include/storage/ipc.h')
-rw-r--r-- | src/include/storage/ipc.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/include/storage/ipc.h b/src/include/storage/ipc.h index 9d0ec8fd8eb..9ee9ef5b9a3 100644 --- a/src/include/storage/ipc.h +++ b/src/include/storage/ipc.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: ipc.h,v 1.3 1996/10/11 03:56:27 scrappy Exp $ + * $Id: ipc.h,v 1.4 1996/10/19 06:27:12 scrappy Exp $ * * NOTES * This file is very architecture-specific. This stuff should actually @@ -17,13 +17,11 @@ #ifndef IPC_H #define IPC_H -#include <sys/types.h> #ifndef _IPC_ #define _IPC_ -#include <sys/ipc.h> #endif -#include "c.h" +#include <sys/types.h> /* * Many architectures have support for user-level spinlocks (i.e., an @@ -63,7 +61,6 @@ typedef unsigned int slock_t; #else /* aix */ #if defined(PORTNAME_alpha) -#include <sys/mman.h> typedef msemaphore slock_t; #else /* alpha */ @@ -76,7 +73,6 @@ typedef struct { int sem[4]; } slock_t; #else /* hpux */ #if defined(PORTNAME_irix5) -#include <abi_mutex.h> typedef abilock_t slock_t; #else /* irix5 */ @@ -86,7 +82,6 @@ typedef abilock_t slock_t; * spinlocks. */ #undef NEVER /* definition in cthreads.h conflicts with parse.h */ -#include <mach/cthreads.h> typedef struct mutex slock_t; #else /* next */ |