diff options
| author | Tom Lane | 2000-12-03 17:18:10 +0000 |
|---|---|---|
| committer | Tom Lane | 2000-12-03 17:18:10 +0000 |
| commit | 68ed2963011257e566f5f174ef670e01bbdc2b34 (patch) | |
| tree | 9ff763a4c49e1c4222f08bef3613242c660f8538 /src/include | |
| parent | e7c80220d35a47265001159607503cae2a7ac90c (diff) | |
Don't use 'private' as a parameter name in visible headers ... makes C++
very unhappy ...
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/storage/ipc.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/include/storage/ipc.h b/src/include/storage/ipc.h index b633297d5f6..55aa2963587 100644 --- a/src/include/storage/ipc.h +++ b/src/include/storage/ipc.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: ipc.h,v 1.43 2000/11/28 23:27:57 tgl Exp $ + * $Id: ipc.h,v 1.44 2000/12/03 17:18:09 tgl Exp $ * * Some files that would normally need to include only sys/ipc.h must * instead include this file because on Ultrix, sys/ipc.h is not designed @@ -104,10 +104,11 @@ extern void IpcSemaphoreUnlock(IpcSemaphoreId semId, int sem); extern bool IpcSemaphoreTryLock(IpcSemaphoreId semId, int sem); extern int IpcSemaphoreGetValue(IpcSemaphoreId semId, int sem); -extern PGShmemHeader *IpcMemoryCreate(uint32 size, bool private, +extern PGShmemHeader *IpcMemoryCreate(uint32 size, bool makePrivate, int permission); /* ipci.c */ -extern void CreateSharedMemoryAndSemaphores(bool private, int maxBackends); +extern void CreateSharedMemoryAndSemaphores(bool makePrivate, + int maxBackends); #endif /* IPC_H */ |
