diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-06-26 01:58:46 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-06-26 01:58:46 +0000 |
commit | ae6a6585849bc6f09474e7341d92a9d5d6d17e76 (patch) | |
tree | df7b1b9d3897049421c5e80c13f0711aee07e599 /src/include | |
parent | eef15f555b88c0470ee1371f2983c6400333c198 (diff) | |
download | postgresql-ae6a6585849bc6f09474e7341d92a9d5d6d17e76.tar.gz postgresql-ae6a6585849bc6f09474e7341d92a9d5d6d17e76.zip |
Rename LockTab to LockTable in function name.
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/storage/lock.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/storage/lock.h b/src/include/storage/lock.h index 05c6a0f4688..2fc5dbe1389 100644 --- a/src/include/storage/lock.h +++ b/src/include/storage/lock.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: lock.h,v 1.12 1998/06/15 18:40:03 momjian Exp $ + * $Id: lock.h,v 1.13 1998/06/26 01:58:46 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -207,7 +207,7 @@ extern SPINLOCK LockMgrLock; extern void InitLocks(void); extern void LockDisable(int status); extern LockTableId -LockTabInit(char *tabName, MASK *conflictsP, int *prioP, +LockTableInit(char *tabName, MASK *conflictsP, int *prioP, int ntypes); extern bool LockAcquire(LockTableId tableId, LOCKTAG *lockName, LOCKT lockt); extern int |