aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2003-02-18 03:33:50 +0000
committerBruce Momjian <bruce@momjian.us>2003-02-18 03:33:50 +0000
commit9ee8e7a39e2ac68d97d04911c596e69368f68a15 (patch)
treec65d2a36eed33e87cad146ea7369fe96778d550c
parentf690acf1044b823edbe85a67f5503a4c111bff2e (diff)
downloadpostgresql-9ee8e7a39e2ac68d97d04911c596e69368f68a15.tar.gz
postgresql-9ee8e7a39e2ac68d97d04911c596e69368f68a15.zip
Update README.
-rw-r--r--src/backend/storage/lmgr/README4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/storage/lmgr/README b/src/backend/storage/lmgr/README
index d04e7bb90fe..8c1843cdd86 100644
--- a/src/backend/storage/lmgr/README
+++ b/src/backend/storage/lmgr/README
@@ -1,4 +1,4 @@
-$Header: /cvsroot/pgsql/src/backend/storage/lmgr/README,v 1.12 2002/10/31 21:34:16 tgl Exp $
+$Header: /cvsroot/pgsql/src/backend/storage/lmgr/README,v 1.13 2003/02/18 03:33:50 momjian Exp $
LOCKING OVERVIEW
@@ -48,7 +48,7 @@ The rest of this README file discusses the regular lock manager in detail.
LOCK DATA STRUCTURES
There are two fundamental lock structures: the per-lockable-object LOCK
-struct, and the per-lock-holder PROCLOCK struct. A LOCK object exists
+struct, and the per-lock PROCLOCK struct. A LOCK object exists
for each lockable object that currently has locks held or requested on it.
A PROCLOCK struct exists for each transaction that is holding or requesting
lock(s) on each LOCK object.