aboutsummaryrefslogtreecommitdiff
path: root/src/backend/storage
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-02-13 23:22:53 +0000
committerBruce Momjian <bruce@momjian.us>1999-02-13 23:22:53 +0000
commit6724a5078748946b8150700125571b6ea62feca8 (patch)
treea7b3f2cf82f0bdb7cf836d1d4614a0e3b32df954 /src/backend/storage
parent8c3fff7337b6389b00e8dda03a079605ee102f1b (diff)
downloadpostgresql-6724a5078748946b8150700125571b6ea62feca8.tar.gz
postgresql-6724a5078748946b8150700125571b6ea62feca8.zip
Change my-function-name-- to my_function_name, and optimizer renames.
Diffstat (limited to 'src/backend/storage')
-rw-r--r--src/backend/storage/buffer/buf_init.c4
-rw-r--r--src/backend/storage/buffer/buf_table.c4
-rw-r--r--src/backend/storage/buffer/bufmgr.c16
-rw-r--r--src/backend/storage/buffer/freelist.c6
-rw-r--r--src/backend/storage/buffer/localbuf.c4
-rw-r--r--src/backend/storage/buffer/s_lock.c4
-rw-r--r--src/backend/storage/file/fd.c4
-rw-r--r--src/backend/storage/ipc/ipc.c4
-rw-r--r--src/backend/storage/ipc/ipci.c10
-rw-r--r--src/backend/storage/ipc/shmem.c6
-rw-r--r--src/backend/storage/ipc/shmqueue.c4
-rw-r--r--src/backend/storage/ipc/sinval.c8
-rw-r--r--src/backend/storage/ipc/sinvaladt.c6
-rw-r--r--src/backend/storage/ipc/spin.c4
-rw-r--r--src/backend/storage/large_object/inv_api.c6
-rw-r--r--src/backend/storage/lmgr/lmgr.c6
-rw-r--r--src/backend/storage/lmgr/lock.c4
-rw-r--r--src/backend/storage/lmgr/multi.c4
-rw-r--r--src/backend/storage/lmgr/proc.c6
-rw-r--r--src/backend/storage/lmgr/single.c4
-rw-r--r--src/backend/storage/page/bufpage.c18
-rw-r--r--src/backend/storage/page/itemptr.c6
-rw-r--r--src/backend/storage/smgr/md.c4
-rw-r--r--src/backend/storage/smgr/mm.c4
-rw-r--r--src/backend/storage/smgr/smgr.c4
-rw-r--r--src/backend/storage/smgr/smgrtype.c4
26 files changed, 77 insertions, 77 deletions
diff --git a/src/backend/storage/buffer/buf_init.c b/src/backend/storage/buffer/buf_init.c
index 620708aaae3..4dd1b0cefe3 100644
--- a/src/backend/storage/buffer/buf_init.c
+++ b/src/backend/storage/buffer/buf_init.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * buf_init.c--
+ * buf_init.c
* buffer manager initialization routines
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/buffer/buf_init.c,v 1.20 1998/12/15 12:46:18 vadim Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/buffer/buf_init.c,v 1.21 1999/02/13 23:17:54 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/backend/storage/buffer/buf_table.c b/src/backend/storage/buffer/buf_table.c
index 2a932c6452e..0b4e0ea58fb 100644
--- a/src/backend/storage/buffer/buf_table.c
+++ b/src/backend/storage/buffer/buf_table.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * buf_table.c--
+ * buf_table.c
* routines for finding buffers in the buffer pool.
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/buffer/buf_table.c,v 1.13 1998/09/01 03:25:00 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/buffer/buf_table.c,v 1.14 1999/02/13 23:17:55 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/backend/storage/buffer/bufmgr.c b/src/backend/storage/buffer/bufmgr.c
index 404b28e5620..19ed9f3afd7 100644
--- a/src/backend/storage/buffer/bufmgr.c
+++ b/src/backend/storage/buffer/bufmgr.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * bufmgr.c--
+ * bufmgr.c
* buffer manager interface routines
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/buffer/bufmgr.c,v 1.47 1999/02/03 21:17:09 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/buffer/bufmgr.c,v 1.48 1999/02/13 23:17:57 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -161,7 +161,7 @@ extern int ShowPinTrace;
* defined */
/*
- * ReadBuffer --
+ * ReadBuffer
*
*/
Buffer
@@ -666,7 +666,7 @@ BufferAlloc(Relation reln,
}
/*
- * WriteBuffer--
+ * WriteBuffer
*
* Pushes buffer contents to disk if WriteMode is BUFFER_FLUSH_WRITE.
* Otherwise, marks contents as dirty.
@@ -1116,7 +1116,7 @@ WaitIO(BufferDesc *buf, SPINLOCK spinlock)
}
/*
- * SignalIO --
+ * SignalIO
*/
static void
SignalIO(BufferDesc *buf)
@@ -1245,7 +1245,7 @@ FlushBufferPool(int StableMainMemoryFlag)
}
/*
- * BufferGetBlockNumber --
+ * BufferGetBlockNumber
* Returns the block number associated with a buffer.
*
* Note:
@@ -1265,7 +1265,7 @@ BufferGetBlockNumber(Buffer buffer)
#ifdef NOT_USED
/*
- * BufferGetRelation --
+ * BufferGetRelation
* Returns the relation desciptor associated with a buffer.
*
* Note:
@@ -1362,7 +1362,7 @@ BufferReplace(BufferDesc *bufHdr, bool bufferLockHeld)
}
/*
- * RelationGetNumberOfBlocks --
+ * RelationGetNumberOfBlocks
* Returns the buffer descriptor associated with a page in a relation.
*
* Note:
diff --git a/src/backend/storage/buffer/freelist.c b/src/backend/storage/buffer/freelist.c
index 8b853ec7c6d..ba2026ae37c 100644
--- a/src/backend/storage/buffer/freelist.c
+++ b/src/backend/storage/buffer/freelist.c
@@ -1,6 +1,6 @@
/*-------------------------------------------------------------------------
*
- * freelist.c--
+ * freelist.c
* routines for manipulating the buffer pool's replacement strategy
* freelist.
*
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/buffer/freelist.c,v 1.13 1998/09/01 04:31:42 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/buffer/freelist.c,v 1.14 1999/02/13 23:17:59 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -55,7 +55,7 @@ extern SPINLOCK BufMgrLock;
/*
- * AddBufferToFreelist --
+ * AddBufferToFreelist
*
* In theory, this is the only routine that needs to be changed
* if the buffer replacement strategy changes. Just change
diff --git a/src/backend/storage/buffer/localbuf.c b/src/backend/storage/buffer/localbuf.c
index f4be40723fd..81c16d36e98 100644
--- a/src/backend/storage/buffer/localbuf.c
+++ b/src/backend/storage/buffer/localbuf.c
@@ -1,6 +1,6 @@
/*-------------------------------------------------------------------------
*
- * localbuf.c--
+ * localbuf.c
* local buffer manager. Fast buffer manager for temporary tables
* or special cases when the operation is not visible to other backends.
*
@@ -15,7 +15,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/buffer/localbuf.c,v 1.20 1999/02/03 21:17:12 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/buffer/localbuf.c,v 1.21 1999/02/13 23:18:00 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/backend/storage/buffer/s_lock.c b/src/backend/storage/buffer/s_lock.c
index 6b43b08bb58..10b649f3ef6 100644
--- a/src/backend/storage/buffer/s_lock.c
+++ b/src/backend/storage/buffer/s_lock.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * s_lock.c--
+ * s_lock.c
* buffer manager interface routines
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/buffer/Attic/s_lock.c,v 1.16 1999/01/17 03:04:51 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/buffer/Attic/s_lock.c,v 1.17 1999/02/13 23:18:02 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/backend/storage/file/fd.c b/src/backend/storage/file/fd.c
index 36db311540d..0cf8478959d 100644
--- a/src/backend/storage/file/fd.c
+++ b/src/backend/storage/file/fd.c
@@ -1,12 +1,12 @@
/*-------------------------------------------------------------------------
*
- * fd.c--
+ * fd.c
* Virtual file descriptor code.
*
* Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $Id: fd.c,v 1.36 1999/02/03 21:17:14 momjian Exp $
+ * $Id: fd.c,v 1.37 1999/02/13 23:18:05 momjian Exp $
*
* NOTES:
*
diff --git a/src/backend/storage/ipc/ipc.c b/src/backend/storage/ipc/ipc.c
index 2e63408eaa0..511893657f5 100644
--- a/src/backend/storage/ipc/ipc.c
+++ b/src/backend/storage/ipc/ipc.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * ipc.c--
+ * ipc.c
* POSTGRES inter-process communication definitions.
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.34 1998/09/02 23:05:30 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.35 1999/02/13 23:18:09 momjian Exp $
*
* NOTES
*
diff --git a/src/backend/storage/ipc/ipci.c b/src/backend/storage/ipc/ipci.c
index 47305f3f087..0a75af6c3e0 100644
--- a/src/backend/storage/ipc/ipci.c
+++ b/src/backend/storage/ipc/ipci.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * ipci.c--
+ * ipci.c
* POSTGRES inter-process communication initialization code.
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipci.c,v 1.17 1998/12/15 12:46:24 vadim Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipci.c,v 1.18 1999/02/13 23:18:11 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -25,7 +25,7 @@
#include "miscadmin.h" /* for DebugLvl */
/*
- * SystemPortAddressCreateMemoryKey --
+ * SystemPortAddressCreateMemoryKey
* Returns a memory key given a port address.
*/
IPCKey
@@ -37,7 +37,7 @@ SystemPortAddressCreateIPCKey(SystemPortAddress address)
}
/*
- * CreateSharedMemoryAndSemaphores --
+ * CreateSharedMemoryAndSemaphores
* Creates and initializes shared memory and semaphores.
*/
/**************************************************
@@ -106,7 +106,7 @@ CreateSharedMemoryAndSemaphores(IPCKey key)
/*
- * AttachSharedMemoryAndSemaphores --
+ * AttachSharedMemoryAndSemaphores
* Attachs existant shared memory and semaphores.
*/
void
diff --git a/src/backend/storage/ipc/shmem.c b/src/backend/storage/ipc/shmem.c
index d09c2f6dd90..afc32068980 100644
--- a/src/backend/storage/ipc/shmem.c
+++ b/src/backend/storage/ipc/shmem.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * shmem.c--
+ * shmem.c
* create shared memory and initialize shared memory data structures.
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/ipc/shmem.c,v 1.35 1999/02/03 21:17:16 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/ipc/shmem.c,v 1.36 1999/02/13 23:18:13 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -107,7 +107,7 @@ ShmemIndexReset(void)
}
/*
- * CreateSharedRegion() --
+ * CreateSharedRegion()
*
* This routine is called once by the postmaster to
* initialize the shared buffer pool. Assume there is
diff --git a/src/backend/storage/ipc/shmqueue.c b/src/backend/storage/ipc/shmqueue.c
index c460beaf900..6ab9a183cfc 100644
--- a/src/backend/storage/ipc/shmqueue.c
+++ b/src/backend/storage/ipc/shmqueue.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * shmqueue.c--
+ * shmqueue.c
* shared memory linked lists
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/ipc/shmqueue.c,v 1.9 1998/09/01 04:31:50 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/ipc/shmqueue.c,v 1.10 1999/02/13 23:18:13 momjian Exp $
*
* NOTES
*
diff --git a/src/backend/storage/ipc/sinval.c b/src/backend/storage/ipc/sinval.c
index 7c4ceaca43b..ec271bd963b 100644
--- a/src/backend/storage/ipc/sinval.c
+++ b/src/backend/storage/ipc/sinval.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * sinval.c--
+ * sinval.c
* POSTGRES shared cache invalidation communication code.
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/ipc/sinval.c,v 1.12 1998/09/01 04:31:52 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/ipc/sinval.c,v 1.13 1999/02/13 23:18:14 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -87,7 +87,7 @@ InitSharedInvalidationState(void)
}
/*
- * RegisterSharedInvalid --
+ * RegisterSharedInvalid
* Returns a new local cache invalidation state containing a new entry.
*
* Note:
@@ -147,7 +147,7 @@ RegisterSharedInvalid(int cacheId, /* XXX */
}
/*
- * InvalidateSharedInvalid --
+ * InvalidateSharedInvalid
* Processes all entries in a shared cache invalidation state.
*/
/****************************************************************************/
diff --git a/src/backend/storage/ipc/sinvaladt.c b/src/backend/storage/ipc/sinvaladt.c
index 806b7806646..0eee0c80222 100644
--- a/src/backend/storage/ipc/sinvaladt.c
+++ b/src/backend/storage/ipc/sinvaladt.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * sinvaladt.c--
+ * sinvaladt.c
* POSTGRES shared cache invalidation segment definitions.
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/ipc/sinvaladt.c,v 1.15 1998/09/01 04:31:53 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/ipc/sinvaladt.c,v 1.16 1999/02/13 23:18:16 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -193,7 +193,7 @@ SISetDeadProcess(SISeg *segP, int backendId)
}
/*
- * CleanupInvalidationState --
+ * CleanupInvalidationState
* Note:
* This is a temporary hack. ExitBackend should call this instead
* of exit (via on_shmem_exit).
diff --git a/src/backend/storage/ipc/spin.c b/src/backend/storage/ipc/spin.c
index 2bd88356fe7..3fe692ff088 100644
--- a/src/backend/storage/ipc/spin.c
+++ b/src/backend/storage/ipc/spin.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * spin.c--
+ * spin.c
* routines for managing spin locks
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/ipc/Attic/spin.c,v 1.17 1998/09/01 04:31:55 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/ipc/Attic/spin.c,v 1.18 1999/02/13 23:18:17 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/backend/storage/large_object/inv_api.c b/src/backend/storage/large_object/inv_api.c
index b8d13a21e22..4d21b82fa20 100644
--- a/src/backend/storage/large_object/inv_api.c
+++ b/src/backend/storage/large_object/inv_api.c
@@ -1,6 +1,6 @@
/*-------------------------------------------------------------------------
*
- * inv_api.c--
+ * inv_api.c
* routines for manipulating inversion fs large objects. This file
* contains the user-level large object application interface routines.
*
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/large_object/inv_api.c,v 1.48 1999/02/04 14:52:00 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/large_object/inv_api.c,v 1.49 1999/02/13 23:18:20 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -563,7 +563,7 @@ inv_write(LargeObjectDesc *obj_desc, char *buf, int nbytes)
}
/*
- * inv_cleanindex --
+ * inv_cleanindex
* Clean opened indexes for large objects, and clears current result.
* This is necessary on transaction commit in order to prevent buffer
* leak.
diff --git a/src/backend/storage/lmgr/lmgr.c b/src/backend/storage/lmgr/lmgr.c
index 385287d9b74..7d34499b017 100644
--- a/src/backend/storage/lmgr/lmgr.c
+++ b/src/backend/storage/lmgr/lmgr.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * lmgr.c--
+ * lmgr.c
* POSTGRES lock manager code
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lmgr.c,v 1.21 1998/12/16 11:53:48 vadim Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lmgr.c,v 1.22 1999/02/13 23:18:24 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -129,7 +129,7 @@ InitLockTable()
}
/*
- * RelationInitLockInfo --
+ * RelationInitLockInfo
* Initializes the lock information in a relation descriptor.
*/
void
diff --git a/src/backend/storage/lmgr/lock.c b/src/backend/storage/lmgr/lock.c
index e64e28fc76e..39fac457a1c 100644
--- a/src/backend/storage/lmgr/lock.c
+++ b/src/backend/storage/lmgr/lock.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * lock.c--
+ * lock.c
* simple lock acquisition
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lock.c,v 1.40 1999/01/17 20:59:56 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lock.c,v 1.41 1999/02/13 23:18:25 momjian Exp $
*
* NOTES
* Outside modules can create a lock table and acquire/release
diff --git a/src/backend/storage/lmgr/multi.c b/src/backend/storage/lmgr/multi.c
index 97aa9c0b47d..6807e9d7cc0 100644
--- a/src/backend/storage/lmgr/multi.c
+++ b/src/backend/storage/lmgr/multi.c
@@ -1,6 +1,6 @@
/*-------------------------------------------------------------------------
*
- * multi.c--
+ * multi.c
* multi level lock table manager
*
* Standard multi-level lock manager as per the Gray paper
@@ -12,7 +12,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/Attic/multi.c,v 1.26 1998/10/08 18:29:59 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/Attic/multi.c,v 1.27 1999/02/13 23:18:27 momjian Exp $
*
* NOTES:
* (1) The lock.c module assumes that the caller here is doing
diff --git a/src/backend/storage/lmgr/proc.c b/src/backend/storage/lmgr/proc.c
index 704448b16fc..de09b4a5b05 100644
--- a/src/backend/storage/lmgr/proc.c
+++ b/src/backend/storage/lmgr/proc.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * proc.c--
+ * proc.c
* routines to manage per-process shared memory data structure
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.47 1998/12/29 19:32:08 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.48 1999/02/13 23:18:28 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -46,7 +46,7 @@
* This is so that we can support more backends. (system-wide semaphore
* sets run out pretty fast.) -ay 4/95
*
- * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.47 1998/12/29 19:32:08 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.48 1999/02/13 23:18:28 momjian Exp $
*/
#include <sys/time.h>
#include <unistd.h>
diff --git a/src/backend/storage/lmgr/single.c b/src/backend/storage/lmgr/single.c
index faf6a576df3..37aed3e53be 100644
--- a/src/backend/storage/lmgr/single.c
+++ b/src/backend/storage/lmgr/single.c
@@ -1,6 +1,6 @@
/*-------------------------------------------------------------------------
*
- * single.c--
+ * single.c
* set single locks in the multi-level lock hierarchy
*
* Sometimes we don't want to set all levels of the multi-level
@@ -13,7 +13,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/Attic/single.c,v 1.9 1998/09/01 03:25:26 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/Attic/single.c,v 1.10 1999/02/13 23:18:29 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/backend/storage/page/bufpage.c b/src/backend/storage/page/bufpage.c
index 674e5ecd996..69074ae2ce1 100644
--- a/src/backend/storage/page/bufpage.c
+++ b/src/backend/storage/page/bufpage.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * bufpage.c--
+ * bufpage.c
* POSTGRES standard buffer page code.
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/page/bufpage.c,v 1.20 1998/09/01 04:32:04 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/page/bufpage.c,v 1.21 1999/02/13 23:18:31 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -35,7 +35,7 @@ static bool PageManagerShuffle = true; /* default is shuffle mode */
*/
/*
- * PageInit --
+ * PageInit
* Initializes the contents of a page.
*/
void
@@ -56,7 +56,7 @@ PageInit(Page page, Size pageSize, Size specialSize)
}
/*
- * PageAddItem --
+ * PageAddItem
* Adds item to the given page.
*
* Note:
@@ -174,7 +174,7 @@ PageAddItem(Page page,
}
/*
- * PageGetTempPage --
+ * PageGetTempPage
* Get a temporary page in local memory for special processing
*/
Page
@@ -207,7 +207,7 @@ PageGetTempPage(Page page, Size specialSize)
}
/*
- * PageRestoreTempPage --
+ * PageRestoreTempPage
* Copy temporary page back to permanent page after special processing
* and release the temporary page.
*/
@@ -246,7 +246,7 @@ itemidcompare(const void *itemidp1, const void *itemidp2)
}
/*
- * PageRepairFragmentation --
+ * PageRepairFragmentation
* Frees fragmented space on a page.
*/
void
@@ -327,7 +327,7 @@ PageRepairFragmentation(Page page)
}
/*
- * PageGetFreeSpace --
+ * PageGetFreeSpace
* Returns the size of the free (allocatable) space on a page.
*/
Size
@@ -346,7 +346,7 @@ PageGetFreeSpace(Page page)
}
/*
- * PageManagerModeSet --
+ * PageManagerModeSet
*
* Sets mode to either: ShufflePageManagerMode (the default) or
* OverwritePageManagerMode. For use by access methods code
diff --git a/src/backend/storage/page/itemptr.c b/src/backend/storage/page/itemptr.c
index f967566a49f..9e1353df5ec 100644
--- a/src/backend/storage/page/itemptr.c
+++ b/src/backend/storage/page/itemptr.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * itemptr.c--
+ * itemptr.c
* POSTGRES disk item pointer code.
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/page/itemptr.c,v 1.4 1998/09/01 03:25:29 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/page/itemptr.c,v 1.5 1999/02/13 23:18:33 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -19,7 +19,7 @@
#include "storage/bufpage.h"
/*
- * ItemPointerEquals --
+ * ItemPointerEquals
* Returns true if both item pointers point to the same item,
* otherwise returns false.
*
diff --git a/src/backend/storage/smgr/md.c b/src/backend/storage/smgr/md.c
index 762b49836c7..f411ad8a18a 100644
--- a/src/backend/storage/smgr/md.c
+++ b/src/backend/storage/smgr/md.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * md.c--
+ * md.c
* This code manages relations that reside on magnetic disk.
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/smgr/md.c,v 1.40 1999/01/17 06:18:40 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/smgr/md.c,v 1.41 1999/02/13 23:18:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/backend/storage/smgr/mm.c b/src/backend/storage/smgr/mm.c
index b3e72e37d68..4ade36df00a 100644
--- a/src/backend/storage/smgr/mm.c
+++ b/src/backend/storage/smgr/mm.c
@@ -1,6 +1,6 @@
/*-------------------------------------------------------------------------
*
- * mm.c--
+ * mm.c
* main memory storage manager
*
* This code manages relations that reside in (presumably stable)
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/smgr/Attic/mm.c,v 1.12 1998/09/01 04:32:07 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/smgr/Attic/mm.c,v 1.13 1999/02/13 23:18:36 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/backend/storage/smgr/smgr.c b/src/backend/storage/smgr/smgr.c
index b8ed161aedd..8472d0b444c 100644
--- a/src/backend/storage/smgr/smgr.c
+++ b/src/backend/storage/smgr/smgr.c
@@ -1,6 +1,6 @@
/*-------------------------------------------------------------------------
*
- * smgr.c--
+ * smgr.c
* public interface routines to storage manager switch.
*
* All file system operations in POSTGRES dispatch through these
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/smgr/smgr.c,v 1.21 1998/10/08 18:30:03 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/smgr/smgr.c,v 1.22 1999/02/13 23:18:39 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/backend/storage/smgr/smgrtype.c b/src/backend/storage/smgr/smgrtype.c
index 2e30f5baa1b..5f981c3b309 100644
--- a/src/backend/storage/smgr/smgrtype.c
+++ b/src/backend/storage/smgr/smgrtype.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * smgrtype.c--
+ * smgrtype.c
* storage manager type
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/smgr/smgrtype.c,v 1.10 1998/09/01 03:25:37 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/smgr/smgrtype.c,v 1.11 1999/02/13 23:18:40 momjian Exp $
*
*-------------------------------------------------------------------------
*/