summaryrefslogtreecommitdiff
path: root/src/include/storage
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/storage')
-rw-r--r--src/include/storage/backendid.h4
-rw-r--r--src/include/storage/block.h4
-rw-r--r--src/include/storage/buf.h4
-rw-r--r--src/include/storage/buf_internals.h8
-rw-r--r--src/include/storage/buffile.h4
-rw-r--r--src/include/storage/bufpage.h4
-rw-r--r--src/include/storage/fd.h4
-rw-r--r--src/include/storage/freespace.h4
-rw-r--r--src/include/storage/ipc.h6
-rw-r--r--src/include/storage/item.h4
-rw-r--r--src/include/storage/itemid.h4
-rw-r--r--src/include/storage/itempos.h6
-rw-r--r--src/include/storage/itemptr.h4
-rw-r--r--src/include/storage/large_object.h4
-rw-r--r--src/include/storage/lmgr.h4
-rw-r--r--src/include/storage/lock.h6
-rw-r--r--src/include/storage/lwlock.h4
-rw-r--r--src/include/storage/off.h4
-rw-r--r--src/include/storage/page.h4
-rw-r--r--src/include/storage/pmsignal.h6
-rw-r--r--src/include/storage/pos.h4
-rw-r--r--src/include/storage/proc.h4
-rw-r--r--src/include/storage/relfilenode.h2
-rw-r--r--src/include/storage/shmem.h4
-rw-r--r--src/include/storage/sinval.h4
-rw-r--r--src/include/storage/sinvaladt.h4
-rw-r--r--src/include/storage/smgr.h4
-rw-r--r--src/include/storage/spin.h4
28 files changed, 61 insertions, 61 deletions
diff --git a/src/include/storage/backendid.h b/src/include/storage/backendid.h
index 212f4e0f11e..f2e272825ec 100644
--- a/src/include/storage/backendid.h
+++ b/src/include/storage/backendid.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: backendid.h,v 1.11 2001/10/28 06:26:08 momjian Exp $
+ * $Id: backendid.h,v 1.12 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -25,4 +25,4 @@ typedef int BackendId; /* unique currently active backend
extern BackendId MyBackendId; /* backend id of this backend */
-#endif /* BACKENDID_H */
+#endif /* BACKENDID_H */
diff --git a/src/include/storage/block.h b/src/include/storage/block.h
index d4516f5b7b8..1c9cd63a248 100644
--- a/src/include/storage/block.h
+++ b/src/include/storage/block.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: block.h,v 1.15 2001/10/28 06:26:08 momjian Exp $
+ * $Id: block.h,v 1.16 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -118,4 +118,4 @@ typedef BlockIdData *BlockId; /* block identifier */
(BlockNumber) (((blockId)->bi_hi << 16) | ((uint16) (blockId)->bi_lo)) \
)
-#endif /* BLOCK_H */
+#endif /* BLOCK_H */
diff --git a/src/include/storage/buf.h b/src/include/storage/buf.h
index 702a3976d1a..9037587b46d 100644
--- a/src/include/storage/buf.h
+++ b/src/include/storage/buf.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: buf.h,v 1.11 2001/10/28 06:26:08 momjian Exp $
+ * $Id: buf.h,v 1.12 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -44,4 +44,4 @@ typedef int Buffer;
*/
#undef NO_BUFFERISVALID
-#endif /* BUF_H */
+#endif /* BUF_H */
diff --git a/src/include/storage/buf_internals.h b/src/include/storage/buf_internals.h
index 46eca54d11a..73033c556b5 100644
--- a/src/include/storage/buf_internals.h
+++ b/src/include/storage/buf_internals.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: buf_internals.h,v 1.53 2001/10/28 06:26:08 momjian Exp $
+ * $Id: buf_internals.h,v 1.54 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -145,8 +145,8 @@ typedef struct _bmtrace
#define BMT_ALLOCNOTFND 2
#define BMT_DEALLOC 3
-} bmtrace;
-#endif /* BMTRACE */
+} bmtrace;
+#endif /* BMTRACE */
/*
@@ -184,4 +184,4 @@ extern int FlushLocalBuffer(Buffer buffer, bool sync, bool release);
extern void LocalBufferSync(void);
extern void ResetLocalBufferPool(void);
-#endif /* BUFMGR_INTERNALS_H */
+#endif /* BUFMGR_INTERNALS_H */
diff --git a/src/include/storage/buffile.h b/src/include/storage/buffile.h
index cf40254bee1..48afc3a90ff 100644
--- a/src/include/storage/buffile.h
+++ b/src/include/storage/buffile.h
@@ -18,7 +18,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: buffile.h,v 1.10 2001/10/28 06:26:08 momjian Exp $
+ * $Id: buffile.h,v 1.11 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -42,4 +42,4 @@ extern int BufFileSeek(BufFile *file, int fileno, long offset, int whence);
extern void BufFileTell(BufFile *file, int *fileno, long *offset);
extern int BufFileSeekBlock(BufFile *file, long blknum);
-#endif /* BUFFILE_H */
+#endif /* BUFFILE_H */
diff --git a/src/include/storage/bufpage.h b/src/include/storage/bufpage.h
index 58b83515f63..6e75f12b3c8 100644
--- a/src/include/storage/bufpage.h
+++ b/src/include/storage/bufpage.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: bufpage.h,v 1.45 2001/10/28 06:26:08 momjian Exp $
+ * $Id: bufpage.h,v 1.46 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -320,4 +320,4 @@ extern Size PageGetFreeSpace(Page page);
extern void PageIndexTupleDelete(Page page, OffsetNumber offset);
extern void IndexPageCleanup(Buffer buffer);
-#endif /* BUFPAGE_H */
+#endif /* BUFPAGE_H */
diff --git a/src/include/storage/fd.h b/src/include/storage/fd.h
index 670a7e5abab..7d86f182923 100644
--- a/src/include/storage/fd.h
+++ b/src/include/storage/fd.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: fd.h,v 1.33 2001/10/28 06:26:08 momjian Exp $
+ * $Id: fd.h,v 1.34 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -79,4 +79,4 @@ extern void RemovePgTempFiles(void);
extern int pg_fsync(int fd);
extern int pg_fdatasync(int fd);
-#endif /* FD_H */
+#endif /* FD_H */
diff --git a/src/include/storage/freespace.h b/src/include/storage/freespace.h
index d9ba1a796f9..6c3a20da3ca 100644
--- a/src/include/storage/freespace.h
+++ b/src/include/storage/freespace.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: freespace.h,v 1.5 2001/10/28 06:26:08 momjian Exp $
+ * $Id: freespace.h,v 1.6 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -48,4 +48,4 @@ extern void FreeSpaceMapForgetDatabase(Oid dbid);
extern void DumpFreeSpace(void);
#endif
-#endif /* FREESPACE_H */
+#endif /* FREESPACE_H */
diff --git a/src/include/storage/ipc.h b/src/include/storage/ipc.h
index 451aede3c4a..6a96ea2d125 100644
--- a/src/include/storage/ipc.h
+++ b/src/include/storage/ipc.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: ipc.h,v 1.53 2001/10/28 06:26:08 momjian Exp $
+ * $Id: ipc.h,v 1.54 2001/11/05 17:46:35 momjian 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
@@ -21,7 +21,7 @@
#include <sys/types.h>
#ifdef HAVE_SYS_IPC_H
#include <sys/ipc.h>
-#endif /* HAVE_SYS_IPC_H */
+#endif /* HAVE_SYS_IPC_H */
#ifndef HAVE_UNION_SEMUN
union semun
@@ -90,4 +90,4 @@ extern bool SharedMemoryIsInUse(IpcMemoryKey shmKey, IpcMemoryId shmId);
extern void CreateSharedMemoryAndSemaphores(bool makePrivate,
int maxBackends);
-#endif /* IPC_H */
+#endif /* IPC_H */
diff --git a/src/include/storage/item.h b/src/include/storage/item.h
index 1bfcabb1eea..94f680fdefc 100644
--- a/src/include/storage/item.h
+++ b/src/include/storage/item.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: item.h,v 1.9 2001/10/28 06:26:09 momjian Exp $
+ * $Id: item.h,v 1.10 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -16,4 +16,4 @@
typedef Pointer Item;
-#endif /* ITEM_H */
+#endif /* ITEM_H */
diff --git a/src/include/storage/itemid.h b/src/include/storage/itemid.h
index fae39dfc7f1..33d94d9e151 100644
--- a/src/include/storage/itemid.h
+++ b/src/include/storage/itemid.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: itemid.h,v 1.18 2001/10/28 06:26:09 momjian Exp $
+ * $Id: itemid.h,v 1.19 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -94,4 +94,4 @@ typedef bits16 ItemIdFlags;
(bool) (((itemId)->lp_flags & LP_USED) != 0) \
)
-#endif /* ITEMID_H */
+#endif /* ITEMID_H */
diff --git a/src/include/storage/itempos.h b/src/include/storage/itempos.h
index 1b18928a8d9..259d80cd0c1 100644
--- a/src/include/storage/itempos.h
+++ b/src/include/storage/itempos.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: itempos.h,v 1.14 2001/10/28 06:26:09 momjian Exp $
+ * $Id: itempos.h,v 1.15 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -23,7 +23,7 @@ typedef struct ItemSubpositionData
ItemId op_lpp;
char *op_cp; /* XXX */
uint32 op_len;
-} ItemSubpositionData;
+} ItemSubpositionData;
typedef ItemSubpositionData *ItemSubposition;
@@ -42,4 +42,4 @@ typedef ItemSubpositionData *ItemSubposition;
#define PSKIP(OBJP, LEN)\
do { (OBJP)->op_cp += (LEN); (OBJP)->op_len -= (LEN); } while (0)
-#endif /* ITEMPOS_H */
+#endif /* ITEMPOS_H */
diff --git a/src/include/storage/itemptr.h b/src/include/storage/itemptr.h
index f9d8e27f3dc..39acf770adc 100644
--- a/src/include/storage/itemptr.h
+++ b/src/include/storage/itemptr.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: itemptr.h,v 1.20 2001/10/28 06:26:09 momjian Exp $
+ * $Id: itemptr.h,v 1.21 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -143,4 +143,4 @@ typedef ItemPointerData *ItemPointer;
extern bool ItemPointerEquals(ItemPointer pointer1, ItemPointer pointer2);
-#endif /* ITEMPTR_H */
+#endif /* ITEMPTR_H */
diff --git a/src/include/storage/large_object.h b/src/include/storage/large_object.h
index 8ea1d34df43..d01364f117b 100644
--- a/src/include/storage/large_object.h
+++ b/src/include/storage/large_object.h
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: large_object.h,v 1.23 2001/10/28 06:26:09 momjian Exp $
+ * $Id: large_object.h,v 1.24 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -76,4 +76,4 @@ extern int inv_tell(LargeObjectDesc *obj_desc);
extern int inv_read(LargeObjectDesc *obj_desc, char *buf, int nbytes);
extern int inv_write(LargeObjectDesc *obj_desc, char *buf, int nbytes);
-#endif /* LARGE_OBJECT_H */
+#endif /* LARGE_OBJECT_H */
diff --git a/src/include/storage/lmgr.h b/src/include/storage/lmgr.h
index 4dbecc07dfc..3b59f56267b 100644
--- a/src/include/storage/lmgr.h
+++ b/src/include/storage/lmgr.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: lmgr.h,v 1.34 2001/10/28 06:26:09 momjian Exp $
+ * $Id: lmgr.h,v 1.35 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -62,4 +62,4 @@ extern void UnlockPage(Relation relation, BlockNumber blkno, LOCKMODE lockmode);
extern void XactLockTableInsert(TransactionId xid);
extern void XactLockTableWait(TransactionId xid);
-#endif /* LMGR_H */
+#endif /* LMGR_H */
diff --git a/src/include/storage/lock.h b/src/include/storage/lock.h
index e21d0ff5068..6b319b74e36 100644
--- a/src/include/storage/lock.h
+++ b/src/include/storage/lock.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: lock.h,v 1.58 2001/10/28 06:26:09 momjian Exp $
+ * $Id: lock.h,v 1.59 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -38,7 +38,7 @@ extern bool Trace_locks;
extern bool Trace_userlocks;
extern int Trace_lock_table;
extern bool Debug_deadlocks;
-#endif /* LOCK_DEBUG */
+#endif /* LOCK_DEBUG */
typedef int LOCKMASK;
@@ -252,4 +252,4 @@ extern void DumpLocks(void);
extern void DumpAllLocks(void);
#endif
-#endif /* LOCK_H */
+#endif /* LOCK_H */
diff --git a/src/include/storage/lwlock.h b/src/include/storage/lwlock.h
index 02bb9b5b454..4db2d7e2c0f 100644
--- a/src/include/storage/lwlock.h
+++ b/src/include/storage/lwlock.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: lwlock.h,v 1.3 2001/10/28 06:26:09 momjian Exp $
+ * $Id: lwlock.h,v 1.4 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -67,4 +67,4 @@ extern int NumLWLocks(void);
extern int LWLockShmemSize(void);
extern void CreateLWLocks(void);
-#endif /* LWLOCK_H */
+#endif /* LWLOCK_H */
diff --git a/src/include/storage/off.h b/src/include/storage/off.h
index 7af9032c8ee..f7daa69171e 100644
--- a/src/include/storage/off.h
+++ b/src/include/storage/off.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: off.h,v 1.12 2001/10/28 06:26:09 momjian Exp $
+ * $Id: off.h,v 1.13 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -55,4 +55,4 @@ typedef uint16 OffsetNumber;
#define OffsetNumberPrev(offsetNumber) \
((OffsetNumber) (-1 + (offsetNumber)))
-#endif /* OFF_H */
+#endif /* OFF_H */
diff --git a/src/include/storage/page.h b/src/include/storage/page.h
index be2ab631f38..73c6a5cdc18 100644
--- a/src/include/storage/page.h
+++ b/src/include/storage/page.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: page.h,v 1.10 2001/10/28 06:26:09 momjian Exp $
+ * $Id: page.h,v 1.11 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -22,4 +22,4 @@ typedef Pointer Page;
*/
#define PageIsValid(page) PointerIsValid(page)
-#endif /* PAGE_H */
+#endif /* PAGE_H */
diff --git a/src/include/storage/pmsignal.h b/src/include/storage/pmsignal.h
index f86c06656ef..1536929f59b 100644
--- a/src/include/storage/pmsignal.h
+++ b/src/include/storage/pmsignal.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: pmsignal.h,v 1.1 2001/11/04 19:55:31 tgl Exp $
+ * $Id: pmsignal.h,v 1.2 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -27,7 +27,7 @@ typedef enum
PMSIGNAL_WAKEN_CHILDREN, /* send a NOTIFY signal to all backends */
NUM_PMSIGNALS /* Must be last value of enum! */
-} PMSignalReason;
+} PMSignalReason;
/*
* prototypes for functions in pmsignal.c
@@ -36,4 +36,4 @@ extern void PMSignalInit(void);
extern void SendPostmasterSignal(PMSignalReason reason);
extern bool CheckPostmasterSignal(PMSignalReason reason);
-#endif /* PMSIGNAL_H */
+#endif /* PMSIGNAL_H */
diff --git a/src/include/storage/pos.h b/src/include/storage/pos.h
index e42c7fa521c..5b2392c9214 100644
--- a/src/include/storage/pos.h
+++ b/src/include/storage/pos.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: pos.h,v 1.12 2001/10/28 06:26:09 momjian Exp $
+ * $Id: pos.h,v 1.13 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -62,4 +62,4 @@ typedef PositionIdData *PositionId;
#define PositionIdGetOffsetNumber(positionId) \
((OffsetNumber) *(positionId))
-#endif /* POS_H */
+#endif /* POS_H */
diff --git a/src/include/storage/proc.h b/src/include/storage/proc.h
index 43be9f043af..cba32ecec21 100644
--- a/src/include/storage/proc.h
+++ b/src/include/storage/proc.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: proc.h,v 1.52 2001/10/28 06:26:09 momjian Exp $
+ * $Id: proc.h,v 1.53 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -153,4 +153,4 @@ extern void ProcSendSignal(BackendId procId);
extern bool enable_sigalrm_interrupt(int delayms);
extern bool disable_sigalrm_interrupt(void);
-#endif /* PROC_H */
+#endif /* PROC_H */
diff --git a/src/include/storage/relfilenode.h b/src/include/storage/relfilenode.h
index c53dea8f399..715dc00f7de 100644
--- a/src/include/storage/relfilenode.h
+++ b/src/include/storage/relfilenode.h
@@ -19,4 +19,4 @@ typedef struct RelFileNode
((node1).relNode == (node2).relNode && \
(node1).tblNode == (node2).tblNode)
-#endif /* RELFILENODE_H */
+#endif /* RELFILENODE_H */
diff --git a/src/include/storage/shmem.h b/src/include/storage/shmem.h
index 37ee5694ac8..9d0821c986b 100644
--- a/src/include/storage/shmem.h
+++ b/src/include/storage/shmem.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: shmem.h,v 1.35 2001/10/28 06:26:09 momjian Exp $
+ * $Id: shmem.h,v 1.36 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -96,4 +96,4 @@ extern Pointer SHMQueueNext(SHM_QUEUE *queue, SHM_QUEUE *curElem,
Size linkOffset);
extern bool SHMQueueEmpty(SHM_QUEUE *queue);
-#endif /* SHMEM_H */
+#endif /* SHMEM_H */
diff --git a/src/include/storage/sinval.h b/src/include/storage/sinval.h
index 2e93d4293e8..af88e066e2e 100644
--- a/src/include/storage/sinval.h
+++ b/src/include/storage/sinval.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: sinval.h,v 1.24 2001/10/28 06:26:09 momjian Exp $
+ * $Id: sinval.h,v 1.25 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -79,4 +79,4 @@ extern int CountActiveBackends(void);
/* Use "struct PROC", not PROC, to avoid including proc.h here */
extern struct PROC *BackendIdGetProc(BackendId procId);
-#endif /* SINVAL_H */
+#endif /* SINVAL_H */
diff --git a/src/include/storage/sinvaladt.h b/src/include/storage/sinvaladt.h
index aca1224e3b9..824e978e959 100644
--- a/src/include/storage/sinvaladt.h
+++ b/src/include/storage/sinvaladt.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: sinvaladt.h,v 1.29 2001/10/28 06:26:09 momjian Exp $
+ * $Id: sinvaladt.h,v 1.30 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -115,4 +115,4 @@ extern int SIGetDataEntry(SISeg *segP, int backendId,
SharedInvalidationMessage *data);
extern void SIDelExpiredDataEntries(SISeg *segP);
-#endif /* SINVALADT_H */
+#endif /* SINVALADT_H */
diff --git a/src/include/storage/smgr.h b/src/include/storage/smgr.h
index 9a10232eba9..41edb4e688d 100644
--- a/src/include/storage/smgr.h
+++ b/src/include/storage/smgr.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: smgr.h,v 1.33 2001/10/28 06:26:09 momjian Exp $
+ * $Id: smgr.h,v 1.34 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -108,4 +108,4 @@ extern Datum smgrin(PG_FUNCTION_ARGS);
extern Datum smgreq(PG_FUNCTION_ARGS);
extern Datum smgrne(PG_FUNCTION_ARGS);
-#endif /* SMGR_H */
+#endif /* SMGR_H */
diff --git a/src/include/storage/spin.h b/src/include/storage/spin.h
index 2ef7f6de8a6..6ec0552ca64 100644
--- a/src/include/storage/spin.h
+++ b/src/include/storage/spin.h
@@ -40,7 +40,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: spin.h,v 1.18 2001/10/28 06:26:09 momjian Exp $
+ * $Id: spin.h,v 1.19 2001/11/05 17:46:35 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -74,4 +74,4 @@
extern void CreateSpinlocks(void);
-#endif /* SPIN_H */
+#endif /* SPIN_H */