summaryrefslogtreecommitdiff
path: root/src/include/storage
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/storage')
-rw-r--r--src/include/storage/backendid.h3
-rw-r--r--src/include/storage/block.h3
-rw-r--r--src/include/storage/buf.h3
-rw-r--r--src/include/storage/buf_internals.h5
-rw-r--r--src/include/storage/buffile.h3
-rw-r--r--src/include/storage/bufmgr.h3
-rw-r--r--src/include/storage/bufpage.h6
-rw-r--r--src/include/storage/fd.h3
-rw-r--r--src/include/storage/freespace.h3
-rw-r--r--src/include/storage/ipc.h3
-rw-r--r--src/include/storage/item.h3
-rw-r--r--src/include/storage/itemid.h3
-rw-r--r--src/include/storage/itempos.h3
-rw-r--r--src/include/storage/itemptr.h3
-rw-r--r--src/include/storage/large_object.h3
-rw-r--r--src/include/storage/lmgr.h3
-rw-r--r--src/include/storage/lock.h3
-rw-r--r--src/include/storage/lwlock.h37
-rw-r--r--src/include/storage/off.h3
-rw-r--r--src/include/storage/page.h3
-rw-r--r--src/include/storage/pos.h3
-rw-r--r--src/include/storage/proc.h3
-rw-r--r--src/include/storage/relfilenode.h1
-rw-r--r--src/include/storage/shmem.h3
-rw-r--r--src/include/storage/sinval.h3
-rw-r--r--src/include/storage/sinvaladt.h3
-rw-r--r--src/include/storage/smgr.h3
-rw-r--r--src/include/storage/spin.h3
28 files changed, 74 insertions, 47 deletions
diff --git a/src/include/storage/backendid.h b/src/include/storage/backendid.h
index 1eac0172e3..212f4e0f11 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.10 2001/10/25 05:50:09 momjian Exp $
+ * $Id: backendid.h,v 1.11 2001/10/28 06:26:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -24,4 +24,5 @@ typedef int BackendId; /* unique currently active backend
#define InvalidBackendId (-1)
extern BackendId MyBackendId; /* backend id of this backend */
+
#endif /* BACKENDID_H */
diff --git a/src/include/storage/block.h b/src/include/storage/block.h
index 90bcf6b2c5..d4516f5b7b 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.14 2001/10/25 05:50:09 momjian Exp $
+ * $Id: block.h,v 1.15 2001/10/28 06:26:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -117,4 +117,5 @@ typedef BlockIdData *BlockId; /* block identifier */
AssertMacro(BlockIdIsValid(blockId)), \
(BlockNumber) (((blockId)->bi_hi << 16) | ((uint16) (blockId)->bi_lo)) \
)
+
#endif /* BLOCK_H */
diff --git a/src/include/storage/buf.h b/src/include/storage/buf.h
index 4d767b808f..702a3976d1 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.10 2001/10/25 05:50:09 momjian Exp $
+ * $Id: buf.h,v 1.11 2001/10/28 06:26:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -43,4 +43,5 @@ typedef int Buffer;
* - plai 9/10/90
*/
#undef NO_BUFFERISVALID
+
#endif /* BUF_H */
diff --git a/src/include/storage/buf_internals.h b/src/include/storage/buf_internals.h
index 2ba2cfb3aa..46eca54d11 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.52 2001/10/25 05:50:09 momjian Exp $
+ * $Id: buf_internals.h,v 1.53 2001/10/28 06:26:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -102,7 +102,7 @@ typedef struct sbufdesc
* BM_PIN_COUNT_WAITER. At present, there can be only one such waiter
* per buffer.
*/
- BackendId wait_backend_id; /* backend ID of pin-count waiter */
+ BackendId wait_backend_id; /* backend ID of pin-count waiter */
} BufferDesc;
#define BufferDescriptorGetBuffer(bdesc) ((bdesc)->buf_id + 1)
@@ -183,4 +183,5 @@ extern int WriteLocalBuffer(Buffer buffer, bool release);
extern int FlushLocalBuffer(Buffer buffer, bool sync, bool release);
extern void LocalBufferSync(void);
extern void ResetLocalBufferPool(void);
+
#endif /* BUFMGR_INTERNALS_H */
diff --git a/src/include/storage/buffile.h b/src/include/storage/buffile.h
index c39463a7e0..cf40254bee 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.9 2001/10/25 05:50:10 momjian Exp $
+ * $Id: buffile.h,v 1.10 2001/10/28 06:26:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -41,4 +41,5 @@ extern size_t BufFileWrite(BufFile *file, void *ptr, size_t size);
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 */
diff --git a/src/include/storage/bufmgr.h b/src/include/storage/bufmgr.h
index 8d755db16e..1655ad02e5 100644
--- a/src/include/storage/bufmgr.h
+++ b/src/include/storage/bufmgr.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: bufmgr.h,v 1.55 2001/10/25 05:50:10 momjian Exp $
+ * $Id: bufmgr.h,v 1.56 2001/10/28 06:26:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -191,4 +191,5 @@ extern void BufmgrCommit(void);
extern void BufferSync(void);
extern void InitLocalBuffer(void);
+
#endif
diff --git a/src/include/storage/bufpage.h b/src/include/storage/bufpage.h
index b948fd06b8..58b83515f6 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.44 2001/10/25 05:50:10 momjian Exp $
+ * $Id: bufpage.h,v 1.45 2001/10/28 06:26:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -132,8 +132,8 @@ typedef PageHeaderData *PageHeader;
typedef enum
{
- ShufflePageManagerMode,
- OverwritePageManagerMode
+ ShufflePageManagerMode,
+ OverwritePageManagerMode
} PageManagerMode;
/* ----------------------------------------------------------------
diff --git a/src/include/storage/fd.h b/src/include/storage/fd.h
index 31eb02c72d..670a7e5aba 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.32 2001/10/25 05:50:10 momjian Exp $
+ * $Id: fd.h,v 1.33 2001/10/28 06:26:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -78,4 +78,5 @@ extern void AtEOXact_Files(void);
extern void RemovePgTempFiles(void);
extern int pg_fsync(int fd);
extern int pg_fdatasync(int fd);
+
#endif /* FD_H */
diff --git a/src/include/storage/freespace.h b/src/include/storage/freespace.h
index 6aebd60e20..d9ba1a796f 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.4 2001/10/25 05:50:10 momjian Exp $
+ * $Id: freespace.h,v 1.5 2001/10/28 06:26:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -47,4 +47,5 @@ extern void FreeSpaceMapForgetDatabase(Oid dbid);
#ifdef FREESPACE_DEBUG
extern void DumpFreeSpace(void);
#endif
+
#endif /* FREESPACE_H */
diff --git a/src/include/storage/ipc.h b/src/include/storage/ipc.h
index 861104d6e5..451aede3c4 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.52 2001/10/25 05:50:10 momjian Exp $
+ * $Id: ipc.h,v 1.53 2001/10/28 06:26:08 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
@@ -89,4 +89,5 @@ extern bool SharedMemoryIsInUse(IpcMemoryKey shmKey, IpcMemoryId shmId);
/* ipci.c */
extern void CreateSharedMemoryAndSemaphores(bool makePrivate,
int maxBackends);
+
#endif /* IPC_H */
diff --git a/src/include/storage/item.h b/src/include/storage/item.h
index afb869444a..1bfcabb1ee 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.8 2001/10/25 05:50:10 momjian Exp $
+ * $Id: item.h,v 1.9 2001/10/28 06:26:09 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -15,4 +15,5 @@
#define ITEM_H
typedef Pointer Item;
+
#endif /* ITEM_H */
diff --git a/src/include/storage/itemid.h b/src/include/storage/itemid.h
index ab4dca9b51..fae39dfc7f 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.17 2001/10/25 05:50:10 momjian Exp $
+ * $Id: itemid.h,v 1.18 2001/10/28 06:26:09 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -93,4 +93,5 @@ typedef bits16 ItemIdFlags;
AssertMacro(ItemIdIsValid(itemId)), \
(bool) (((itemId)->lp_flags & LP_USED) != 0) \
)
+
#endif /* ITEMID_H */
diff --git a/src/include/storage/itempos.h b/src/include/storage/itempos.h
index 453863cd40..1b18928a8d 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.13 2001/10/25 05:50:10 momjian Exp $
+ * $Id: itempos.h,v 1.14 2001/10/28 06:26:09 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -41,4 +41,5 @@ typedef ItemSubpositionData *ItemSubposition;
*/
#define PSKIP(OBJP, LEN)\
do { (OBJP)->op_cp += (LEN); (OBJP)->op_len -= (LEN); } while (0)
+
#endif /* ITEMPOS_H */
diff --git a/src/include/storage/itemptr.h b/src/include/storage/itemptr.h
index 30fb918477..f9d8e27f3d 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.19 2001/10/25 05:50:10 momjian Exp $
+ * $Id: itemptr.h,v 1.20 2001/10/28 06:26:09 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -142,4 +142,5 @@ typedef ItemPointerData *ItemPointer;
*/
extern bool ItemPointerEquals(ItemPointer pointer1, ItemPointer pointer2);
+
#endif /* ITEMPTR_H */
diff --git a/src/include/storage/large_object.h b/src/include/storage/large_object.h
index a87a8e301b..8ea1d34df4 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.22 2001/10/25 05:50:10 momjian Exp $
+ * $Id: large_object.h,v 1.23 2001/10/28 06:26:09 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -75,4 +75,5 @@ extern int inv_seek(LargeObjectDesc *obj_desc, int offset, int whence);
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 */
diff --git a/src/include/storage/lmgr.h b/src/include/storage/lmgr.h
index c481b884a6..4dbecc07df 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.33 2001/10/25 05:50:10 momjian Exp $
+ * $Id: lmgr.h,v 1.34 2001/10/28 06:26:09 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -61,4 +61,5 @@ extern void UnlockPage(Relation relation, BlockNumber blkno, LOCKMODE lockmode);
/* Lock an XID (used to wait for a transaction to finish) */
extern void XactLockTableInsert(TransactionId xid);
extern void XactLockTableWait(TransactionId xid);
+
#endif /* LMGR_H */
diff --git a/src/include/storage/lock.h b/src/include/storage/lock.h
index b5f20b3cb8..e21d0ff506 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.57 2001/10/25 05:50:10 momjian Exp $
+ * $Id: lock.h,v 1.58 2001/10/28 06:26:09 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -251,4 +251,5 @@ extern void InitDeadLockChecking(void);
extern void DumpLocks(void);
extern void DumpAllLocks(void);
#endif
+
#endif /* LOCK_H */
diff --git a/src/include/storage/lwlock.h b/src/include/storage/lwlock.h
index 1725fc3b73..02bb9b5b45 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.2 2001/10/25 05:50:10 momjian Exp $
+ * $Id: lwlock.h,v 1.3 2001/10/28 06:26:09 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -25,31 +25,31 @@
*/
typedef enum LWLockId
{
- BufMgrLock,
- LockMgrLock,
- OidGenLock,
- XidGenLock,
- ShmemIndexLock,
- SInvalLock,
- FreeSpaceLock,
- MMCacheLock,
- WALInsertLock,
- WALWriteLock,
- ControlFileLock,
- CheckpointLock,
- CLogControlLock,
+ BufMgrLock,
+ LockMgrLock,
+ OidGenLock,
+ XidGenLock,
+ ShmemIndexLock,
+ SInvalLock,
+ FreeSpaceLock,
+ MMCacheLock,
+ WALInsertLock,
+ WALWriteLock,
+ ControlFileLock,
+ CheckpointLock,
+ CLogControlLock,
- NumFixedLWLocks,/* must be last except for
+ NumFixedLWLocks, /* must be last except for
* MaxDynamicLWLock */
- MaxDynamicLWLock = 1000000000
+ MaxDynamicLWLock = 1000000000
} LWLockId;
typedef enum LWLockMode
{
- LW_EXCLUSIVE,
- LW_SHARED
+ LW_EXCLUSIVE,
+ LW_SHARED
} LWLockMode;
@@ -66,4 +66,5 @@ extern void LWLockReleaseAll(void);
extern int NumLWLocks(void);
extern int LWLockShmemSize(void);
extern void CreateLWLocks(void);
+
#endif /* LWLOCK_H */
diff --git a/src/include/storage/off.h b/src/include/storage/off.h
index a575b8d23f..7af9032c8e 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.11 2001/10/25 05:50:10 momjian Exp $
+ * $Id: off.h,v 1.12 2001/10/28 06:26:09 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -54,4 +54,5 @@ typedef uint16 OffsetNumber;
((OffsetNumber) (1 + (offsetNumber)))
#define OffsetNumberPrev(offsetNumber) \
((OffsetNumber) (-1 + (offsetNumber)))
+
#endif /* OFF_H */
diff --git a/src/include/storage/page.h b/src/include/storage/page.h
index baf7e3ed26..be2ab631f3 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.9 2001/10/25 05:50:10 momjian Exp $
+ * $Id: page.h,v 1.10 2001/10/28 06:26:09 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -21,4 +21,5 @@ typedef Pointer Page;
* True iff page is valid.
*/
#define PageIsValid(page) PointerIsValid(page)
+
#endif /* PAGE_H */
diff --git a/src/include/storage/pos.h b/src/include/storage/pos.h
index 7035fe74f5..e42c7fa521 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.11 2001/10/25 05:50:10 momjian Exp $
+ * $Id: pos.h,v 1.12 2001/10/28 06:26:09 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -61,4 +61,5 @@ typedef PositionIdData *PositionId;
*/
#define PositionIdGetOffsetNumber(positionId) \
((OffsetNumber) *(positionId))
+
#endif /* POS_H */
diff --git a/src/include/storage/proc.h b/src/include/storage/proc.h
index 4be08aa3d2..43be9f043a 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.51 2001/10/25 05:50:10 momjian Exp $
+ * $Id: proc.h,v 1.52 2001/10/28 06:26:09 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -152,4 +152,5 @@ extern void ProcSendSignal(BackendId procId);
extern bool enable_sigalrm_interrupt(int delayms);
extern bool disable_sigalrm_interrupt(void);
+
#endif /* PROC_H */
diff --git a/src/include/storage/relfilenode.h b/src/include/storage/relfilenode.h
index 22af8343b5..c53dea8f39 100644
--- a/src/include/storage/relfilenode.h
+++ b/src/include/storage/relfilenode.h
@@ -18,4 +18,5 @@ typedef struct RelFileNode
#define RelFileNodeEquals(node1, node2) \
((node1).relNode == (node2).relNode && \
(node1).tblNode == (node2).tblNode)
+
#endif /* RELFILENODE_H */
diff --git a/src/include/storage/shmem.h b/src/include/storage/shmem.h
index ef529a0826..37ee5694ac 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.34 2001/10/25 05:50:10 momjian Exp $
+ * $Id: shmem.h,v 1.35 2001/10/28 06:26:09 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -95,4 +95,5 @@ extern void SHMQueueInsertBefore(SHM_QUEUE *queue, SHM_QUEUE *elem);
extern Pointer SHMQueueNext(SHM_QUEUE *queue, SHM_QUEUE *curElem,
Size linkOffset);
extern bool SHMQueueEmpty(SHM_QUEUE *queue);
+
#endif /* SHMEM_H */
diff --git a/src/include/storage/sinval.h b/src/include/storage/sinval.h
index 21586b68ba..2e93d4293e 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.23 2001/10/25 05:50:10 momjian Exp $
+ * $Id: sinval.h,v 1.24 2001/10/28 06:26:09 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -78,4 +78,5 @@ extern int CountActiveBackends(void);
/* Use "struct PROC", not PROC, to avoid including proc.h here */
extern struct PROC *BackendIdGetProc(BackendId procId);
+
#endif /* SINVAL_H */
diff --git a/src/include/storage/sinvaladt.h b/src/include/storage/sinvaladt.h
index e8d2967600..aca1224e3b 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.28 2001/10/25 05:50:10 momjian Exp $
+ * $Id: sinvaladt.h,v 1.29 2001/10/28 06:26:09 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -114,4 +114,5 @@ extern bool SIInsertDataEntry(SISeg *segP, SharedInvalidationMessage *data);
extern int SIGetDataEntry(SISeg *segP, int backendId,
SharedInvalidationMessage *data);
extern void SIDelExpiredDataEntries(SISeg *segP);
+
#endif /* SINVALADT_H */
diff --git a/src/include/storage/smgr.h b/src/include/storage/smgr.h
index 2564fd04a2..9a10232eba 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.32 2001/10/25 05:50:10 momjian Exp $
+ * $Id: smgr.h,v 1.33 2001/10/28 06:26:09 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -107,4 +107,5 @@ extern Datum smgrout(PG_FUNCTION_ARGS);
extern Datum smgrin(PG_FUNCTION_ARGS);
extern Datum smgreq(PG_FUNCTION_ARGS);
extern Datum smgrne(PG_FUNCTION_ARGS);
+
#endif /* SMGR_H */
diff --git a/src/include/storage/spin.h b/src/include/storage/spin.h
index 9d13097915..2ef7f6de8a 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.17 2001/10/25 05:50:10 momjian Exp $
+ * $Id: spin.h,v 1.18 2001/10/28 06:26:09 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -73,4 +73,5 @@
extern void CreateSpinlocks(void);
+
#endif /* SPIN_H */