File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipci.c,v 1.12 1998/06/25 14:24:34 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipci.c,v 1.13 1998/06/26 19:57:48 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -92,8 +92,8 @@ CreateSharedMemoryAndSemaphores(IPCKey key)
92
92
* ----------------
93
93
*/
94
94
InitLocks ();
95
- InitMultiLevelLockm ();
96
- if (InitMultiLevelLockm () == INVALID_TABLEID )
95
+ InitMultiLevelLocks ();
96
+ if (InitMultiLevelLocks () == INVALID_TABLEID )
97
97
elog (FATAL , "Couldn't create the lock table" );
98
98
99
99
/* ----------------
@@ -146,7 +146,7 @@ AttachSharedMemoryAndSemaphores(IPCKey key)
146
146
* ----------------
147
147
*/
148
148
InitLocks ();
149
- if (InitMultiLevelLockm () == INVALID_TABLEID )
149
+ if (InitMultiLevelLocks () == INVALID_TABLEID )
150
150
elog (FATAL , "Couldn't attach to the lock table" );
151
151
152
152
AttachSharedInvalidationState (key );
Original file line number Diff line number Diff line change 12
12
*
13
13
*
14
14
* IDENTIFICATION
15
- * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/Attic/multi.c,v 1.15 1998/06/26 01:58:45 momjian Exp $
15
+ * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/Attic/multi.c,v 1.16 1998/06/26 19:57:49 momjian Exp $
16
16
*
17
17
* NOTES:
18
18
* (1) The lock.c module assumes that the caller here is doing
@@ -85,7 +85,7 @@ LockTableId ShortTermTableId = (LockTableId) NULL;
85
85
* Create the lock table described by MultiConflicts and Multiprio.
86
86
*/
87
87
LockTableId
88
- InitMultiLevelLockm ()
88
+ InitMultiLevelLocks ()
89
89
{
90
90
int tableId ;
91
91
@@ -99,13 +99,13 @@ InitMultiLevelLockm()
99
99
tableId = LockTableInit ("LockTable" , MultiConflicts , MultiPrios , 5 );
100
100
MultiTableId = tableId ;
101
101
if (!(MultiTableId ))
102
- elog (ERROR , "InitMultiLockm : couldnt initialize lock table" );
102
+ elog (ERROR , "InitMultiLocks : couldnt initialize lock table" );
103
103
/* -----------------------
104
104
* No short term lock table for now. -Jeff 15 July 1991
105
105
*
106
106
* ShortTermTableId = LockTableRename(tableId);
107
107
* if (! (ShortTermTableId)) {
108
- * elog(ERROR,"InitMultiLockm : couldnt rename lock table");
108
+ * elog(ERROR,"InitMultiLocks : couldnt rename lock table");
109
109
* }
110
110
* -----------------------
111
111
*/
Original file line number Diff line number Diff line change 7
7
*
8
8
* Copyright (c) 1994, Regents of the University of California
9
9
*
10
- * $Id: multilev.h,v 1.7 1998/02 /26 04:43:30 momjian Exp $
10
+ * $Id: multilev.h,v 1.8 1998/06 /26 19:57:50 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -49,7 +49,7 @@ extern LockTableId ShortTermTableId;
49
49
/*
50
50
* function prototypes
51
51
*/
52
- extern LockTableId InitMultiLevelLockm (void );
52
+ extern LockTableId InitMultiLevelLocks (void );
53
53
extern bool MultiLockReln (LockInfo linfo , LOCKT lockt );
54
54
extern bool MultiLockTuple (LockInfo linfo , ItemPointer tidPtr , LOCKT lockt );
55
55
extern bool MultiLockPage (LockInfo linfo , ItemPointer tidPtr , LOCKT lockt );
You can’t perform that action at this time.
0 commit comments