aboutsummaryrefslogtreecommitdiff
path: root/src/backend
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1998-01-23 19:53:44 +0000
committerMarc G. Fournier <scrappy@hub.org>1998-01-23 19:53:44 +0000
commit1de8926bbed3161d0c7a93925a076c9f9d5f529a (patch)
tree88c1354fc14729ddac5ec39133201546b35f5c9c /src/backend
parentb34c8ec3ec8385043f7542bc886a13230d95ca14 (diff)
downloadpostgresql-1de8926bbed3161d0c7a93925a076c9f9d5f529a.tar.gz
postgresql-1de8926bbed3161d0c7a93925a076c9f9d5f529a.zip
LOCK_LEVEL is defined in an i386_solaris system file, causing the compile
to break. renaming to PG_LOCK_LEVEL
Diffstat (limited to 'src/backend')
-rw-r--r--src/backend/storage/lmgr/multi.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/storage/lmgr/multi.c b/src/backend/storage/lmgr/multi.c
index 1916b102acf..2196444299f 100644
--- a/src/backend/storage/lmgr/multi.c
+++ b/src/backend/storage/lmgr/multi.c
@@ -12,7 +12,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/Attic/multi.c,v 1.10 1998/01/07 21:05:35 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/Attic/multi.c,v 1.11 1998/01/23 19:53:40 scrappy Exp $
*
* NOTES:
* (1) The lock.c module assumes that the caller here is doing
@@ -31,10 +31,10 @@
static bool
MultiAcquire(LockTableId tableId, LOCKTAG *tag, LOCKT lockt,
- LOCK_LEVEL level);
+ PG_LOCK_LEVEL level);
static bool
MultiRelease(LockTableId tableId, LOCKTAG *tag, LOCKT lockt,
- LOCK_LEVEL level);
+ PG_LOCK_LEVEL level);
/*
* INTENT indicates to higher level that a lower level lock has been
@@ -201,7 +201,7 @@ static bool
MultiAcquire(LockTableId tableId,
LOCKTAG *tag,
LOCKT lockt,
- LOCK_LEVEL level)
+ PG_LOCK_LEVEL level)
{
LOCKT locks[N_LEVELS];
int i,
@@ -361,7 +361,7 @@ static bool
MultiRelease(LockTableId tableId,
LOCKTAG *tag,
LOCKT lockt,
- LOCK_LEVEL level)
+ PG_LOCK_LEVEL level)
{
LOCKT locks[N_LEVELS];
int i,