diff options
Diffstat (limited to 'src/backend/storage/lmgr/lock.c')
-rw-r--r-- | src/backend/storage/lmgr/lock.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/storage/lmgr/lock.c b/src/backend/storage/lmgr/lock.c index 191ee71f878..97683e8582b 100644 --- a/src/backend/storage/lmgr/lock.c +++ b/src/backend/storage/lmgr/lock.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lock.c,v 1.29 1998/06/27 04:53:37 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lock.c,v 1.30 1998/06/27 15:47:46 momjian Exp $ * * NOTES * Outside modules can create a lock table and acquire/release @@ -216,9 +216,9 @@ LockTypeInit(LOCKTAB *ltable, * LockTableInit -- initialize a lock table structure * * Notes: - * (a) a lock table has four separate entries in the binding + * (a) a lock table has four separate entries in the shmem index * table. This is because every shared hash table and spinlock - * has its name stored in the binding table at its creation. It + * has its name stored in the shmem index at its creation. It * is wasteful, in this case, but not much space is involved. * */ @@ -242,7 +242,7 @@ LockTableInit(char *tabName, return (INVALID_TABLEID); } - /* allocate a string for the binding table lookup */ + /* allocate a string for the shmem index table lookup */ shmemName = (char *) palloc((unsigned) (strlen(tabName) + 32)); if (!shmemName) { |