diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-02-26 04:46:47 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-02-26 04:46:47 +0000 |
commit | a32450a5855eed4bfd756ef292ee45d3c754665b (patch) | |
tree | 26735c3406d9f46d0f39accbe6ff1fb5cc5beedc /src/include/storage/lmgr.h | |
parent | 757bf69a2e259c76baed94fa06e792664ab5ed67 (diff) | |
download | postgresql-a32450a5855eed4bfd756ef292ee45d3c754665b.tar.gz postgresql-a32450a5855eed4bfd756ef292ee45d3c754665b.zip |
pgindent run before 6.3 release, with Thomas' requested changes.
Diffstat (limited to 'src/include/storage/lmgr.h')
-rw-r--r-- | src/include/storage/lmgr.h | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/src/include/storage/lmgr.h b/src/include/storage/lmgr.h index 1d53dd96327..8fecda3840a 100644 --- a/src/include/storage/lmgr.h +++ b/src/include/storage/lmgr.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: lmgr.h,v 1.9 1998/01/24 22:50:09 momjian Exp $ + * $Id: lmgr.h,v 1.10 1998/02/26 04:43:27 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -49,17 +49,22 @@ extern void RelationSetLockForWrite(Relation relation); extern void RelationUnsetLockForWrite(Relation relation); /* used in vaccum.c */ -extern void RelationSetLockForWritePage(Relation relation, +extern void +RelationSetLockForWritePage(Relation relation, ItemPointer itemPointer); /* used in nbtpage.c, hashpage.c */ -extern void RelationSetSingleWLockPage(Relation relation, +extern void +RelationSetSingleWLockPage(Relation relation, ItemPointer itemPointer); -extern void RelationUnsetSingleWLockPage(Relation relation, +extern void +RelationUnsetSingleWLockPage(Relation relation, ItemPointer itemPointer); -extern void RelationSetSingleRLockPage(Relation relation, +extern void +RelationSetSingleRLockPage(Relation relation, ItemPointer itemPointer); -extern void RelationUnsetSingleRLockPage(Relation relation, +extern void +RelationUnsetSingleRLockPage(Relation relation, ItemPointer itemPointer); extern void RelationSetRIntentLock(Relation relation); extern void RelationUnsetRIntentLock(Relation relation); @@ -68,7 +73,8 @@ extern void RelationUnsetWIntentLock(Relation relation); /* single.c */ extern bool SingleLockReln(LockInfo linfo, LOCKT lockt, int action); -extern bool SingleLockPage(LockInfo linfo, ItemPointer tidPtr, +extern bool +SingleLockPage(LockInfo linfo, ItemPointer tidPtr, LOCKT lockt, int action); /* proc.c */ |