File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed 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.10 1998/01/07 21:05:35 momjian Exp $
15
+ * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/Attic/multi.c,v 1.11 1998/01/23 19:53:40 scrappy Exp $
16
16
*
17
17
* NOTES:
18
18
* (1) The lock.c module assumes that the caller here is doing
31
31
32
32
static bool
33
33
MultiAcquire (LockTableId tableId , LOCKTAG * tag , LOCKT lockt ,
34
- LOCK_LEVEL level );
34
+ PG_LOCK_LEVEL level );
35
35
static bool
36
36
MultiRelease (LockTableId tableId , LOCKTAG * tag , LOCKT lockt ,
37
- LOCK_LEVEL level );
37
+ PG_LOCK_LEVEL level );
38
38
39
39
/*
40
40
* INTENT indicates to higher level that a lower level lock has been
@@ -201,7 +201,7 @@ static bool
201
201
MultiAcquire (LockTableId tableId ,
202
202
LOCKTAG * tag ,
203
203
LOCKT lockt ,
204
- LOCK_LEVEL level )
204
+ PG_LOCK_LEVEL level )
205
205
{
206
206
LOCKT locks [N_LEVELS ];
207
207
int i ,
@@ -361,7 +361,7 @@ static bool
361
361
MultiRelease (LockTableId tableId ,
362
362
LOCKTAG * tag ,
363
363
LOCKT lockt ,
364
- LOCK_LEVEL level )
364
+ PG_LOCK_LEVEL level )
365
365
{
366
366
LOCKT locks [N_LEVELS ];
367
367
int i ,
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.5 1997/09/08 02:39:05 momjian Exp $
10
+ * $Id: multilev.h,v 1.6 1998/01/23 19:53:44 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
39
39
#define RELN_LEVEL 0
40
40
#define PAGE_LEVEL 1
41
41
#define TUPLE_LEVEL 2
42
- typedef int LOCK_LEVEL ;
42
+ typedef int PG_LOCK_LEVEL ;
43
43
44
44
/* multi.c */
45
45
You can’t perform that action at this time.
0 commit comments