diff options
| author | Bruce Momjian | 1998-06-26 19:57:50 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1998-06-26 19:57:50 +0000 |
| commit | 8fa93b016a8dd791be2031359af94588352da97f (patch) | |
| tree | b68c26f61f4bd8efba3a899fe114612dcc213c1a /src/backend/storage/ipc/ipci.c | |
| parent | ae6a6585849bc6f09474e7341d92a9d5d6d17e76 (diff) | |
Rename Lockm to Locks.
Diffstat (limited to 'src/backend/storage/ipc/ipci.c')
| -rw-r--r-- | src/backend/storage/ipc/ipci.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/storage/ipc/ipci.c b/src/backend/storage/ipc/ipci.c index 4f1bb5c4879..e8aabe5a74f 100644 --- a/src/backend/storage/ipc/ipci.c +++ b/src/backend/storage/ipc/ipci.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipci.c,v 1.12 1998/06/25 14:24:34 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipci.c,v 1.13 1998/06/26 19:57:48 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -92,8 +92,8 @@ CreateSharedMemoryAndSemaphores(IPCKey key) * ---------------- */ InitLocks(); - InitMultiLevelLockm(); - if (InitMultiLevelLockm() == INVALID_TABLEID) + InitMultiLevelLocks(); + if (InitMultiLevelLocks() == INVALID_TABLEID) elog(FATAL, "Couldn't create the lock table"); /* ---------------- @@ -146,7 +146,7 @@ AttachSharedMemoryAndSemaphores(IPCKey key) * ---------------- */ InitLocks(); - if (InitMultiLevelLockm() == INVALID_TABLEID) + if (InitMultiLevelLocks() == INVALID_TABLEID) elog(FATAL, "Couldn't attach to the lock table"); AttachSharedInvalidationState(key); |
