summaryrefslogtreecommitdiff
path: root/src/backend/storage/ipc/ipci.c
diff options
context:
space:
mode:
authorBruce Momjian1998-06-23 15:35:48 +0000
committerBruce Momjian1998-06-23 15:35:48 +0000
commitcba0c6559aca9c3c8c50e1c6f8f1068ada1b7e8e (patch)
tree42ceda01f7428aacbb1eeb245e4308e35b88540d /src/backend/storage/ipc/ipci.c
parent62b124b4ee8f1d37363ba8c556730c06254889e4 (diff)
rename MAIN_MEMORY to STABLE_MEMORY_STORAGE
Diffstat (limited to 'src/backend/storage/ipc/ipci.c')
-rw-r--r--src/backend/storage/ipc/ipci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/storage/ipc/ipci.c b/src/backend/storage/ipc/ipci.c
index 4da60cb9ac9..c0752089e74 100644
--- a/src/backend/storage/ipc/ipci.c
+++ b/src/backend/storage/ipc/ipci.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipci.c,v 1.8 1998/05/29 17:00:12 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipci.c,v 1.9 1998/06/23 15:35:44 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -73,9 +73,9 @@ CreateSharedMemoryAndSemaphores(IPCKey key)
CreateSpinlocks(IPCKeyGetSpinLockSemaphoreKey(key));
size = BufferShmemSize() + LockShmemSize();
-#ifdef MAIN_MEMORY
+#ifdef STABLE_MEMORY_STORAGE
size += MMShmemSize();
-#endif /* MAIN_MEMORY */
+#endif
if (DebugLvl > 1)
{