Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
a95ac415
Commit
a95ac415
authored
24 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
More comment cleanups.
parent
82fc51e0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/backend/storage/lmgr/lock.c
+15
-13
15 additions, 13 deletions
src/backend/storage/lmgr/lock.c
with
15 additions
and
13 deletions
src/backend/storage/lmgr/lock.c
+
15
−
13
View file @
a95ac415
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lock.c,v 1.8
2
2001/02/22 23:
02:33
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lock.c,v 1.8
3
2001/02/22 23:
20:06
momjian Exp $
*
*
* NOTES
* NOTES
* Outside modules can create a lock table and acquire/release
* Outside modules can create a lock table and acquire/release
...
@@ -45,7 +45,7 @@ static int WaitOnLock(LOCKMETHOD lockmethod, LOCKMODE lockmode,
...
@@ -45,7 +45,7 @@ static int WaitOnLock(LOCKMETHOD lockmethod, LOCKMODE lockmode,
static
void
LockCountMyLocks
(
SHMEM_OFFSET
lockOffset
,
PROC
*
proc
,
static
void
LockCountMyLocks
(
SHMEM_OFFSET
lockOffset
,
PROC
*
proc
,
int
*
myHolding
);
int
*
myHolding
);
static
char
*
lock_
typ
es
[]
=
static
char
*
lock_
mode_nam
es
[]
=
{
{
"INVALID"
,
"INVALID"
,
"AccessShareLock"
,
"AccessShareLock"
,
...
@@ -65,16 +65,18 @@ static char *DeadLockMessage = "Deadlock detected.\n\tSee the lock(l) manual pag
...
@@ -65,16 +65,18 @@ static char *DeadLockMessage = "Deadlock detected.\n\tSee the lock(l) manual pag
/*------
/*------
* The following configuration options are available for lock debugging:
* The following configuration options are available for lock debugging:
*
*
*
trace_locks
-- give a bunch of output what's going on in this file
*
TRACE_LOCKS
-- give a bunch of output what's going on in this file
*
trace_userlocks
-- same but for user locks
*
TRACE_USERLOCKS
-- same but for user locks
*
trace_lock_oidmin
-- do not trace locks for tables below this oid
*
TRACE_LOCK_OIDMIN
-- do not trace locks for tables below this oid
* (use to avoid output on system tables)
* (use to avoid output on system tables)
* trace_lock_table -- trace locks on this table (oid) unconditionally
* TRACE_LOCK_TABLE -- trace locks on this table (oid) unconditionally
* debug_deadlocks -- currently dumps locks at untimely occasions ;)
* DEBUG_DEADLOCKS -- currently dumps locks at untimely occasions ;)
*
* Furthermore, but in storage/ipc/spin.c:
* Furthermore, but in storage/ipc/spin.c:
*
trace_spinlocks
-- trace spinlocks (pretty useless)
*
TRACE_SPINLOCKS
-- trace spinlocks (pretty useless)
*
*
* Define LOCK_DEBUG at compile time to get all this enabled.
* Define LOCK_DEBUG at compile time to get all these enabled.
* --------
*/
*/
int
Trace_lock_oidmin
=
BootstrapObjectIdData
;
int
Trace_lock_oidmin
=
BootstrapObjectIdData
;
...
@@ -112,7 +114,7 @@ LOCK_PRINT(const char * where, const LOCK * lock, LOCKMODE type)
...
@@ -112,7 +114,7 @@ LOCK_PRINT(const char * where, const LOCK * lock, LOCKMODE type)
lock
->
granted
[
1
],
lock
->
granted
[
2
],
lock
->
granted
[
3
],
lock
->
granted
[
1
],
lock
->
granted
[
2
],
lock
->
granted
[
3
],
lock
->
granted
[
4
],
lock
->
granted
[
5
],
lock
->
granted
[
6
],
lock
->
granted
[
4
],
lock
->
granted
[
5
],
lock
->
granted
[
6
],
lock
->
granted
[
7
],
lock
->
nGranted
,
lock
->
granted
[
7
],
lock
->
nGranted
,
lock
->
waitProcs
.
size
,
lock_
typ
es
[
type
]);
lock
->
waitProcs
.
size
,
lock_
mode_nam
es
[
type
]);
}
}
...
@@ -494,7 +496,7 @@ LockAcquire(LOCKMETHOD lockmethod, LOCKTAG *locktag,
...
@@ -494,7 +496,7 @@ LockAcquire(LOCKMETHOD lockmethod, LOCKTAG *locktag,
#ifdef LOCK_DEBUG
#ifdef LOCK_DEBUG
if
(
lockmethod
==
USER_LOCKMETHOD
&&
Trace_userlocks
)
if
(
lockmethod
==
USER_LOCKMETHOD
&&
Trace_userlocks
)
elog
(
DEBUG
,
"LockAcquire: user lock [%u] %s"
,
elog
(
DEBUG
,
"LockAcquire: user lock [%u] %s"
,
locktag
->
objId
.
blkno
,
lock_
typ
es
[
lockmode
]);
locktag
->
objId
.
blkno
,
lock_
mode_nam
es
[
lockmode
]);
#endif
#endif
/* ???????? This must be changed when short term locks will be used */
/* ???????? This must be changed when short term locks will be used */
...
@@ -615,7 +617,7 @@ LockAcquire(LOCKMETHOD lockmethod, LOCKTAG *locktag,
...
@@ -615,7 +617,7 @@ LockAcquire(LOCKMETHOD lockmethod, LOCKTAG *locktag,
break
;
/* safe: we have a lock >= req level */
break
;
/* safe: we have a lock >= req level */
elog
(
DEBUG
,
"Deadlock risk: raising lock level"
elog
(
DEBUG
,
"Deadlock risk: raising lock level"
" from %s to %s on object %u/%u/%u"
,
" from %s to %s on object %u/%u/%u"
,
lock_
typ
es
[
i
],
lock_
typ
es
[
lockmode
],
lock_
mode_nam
es
[
i
],
lock_
mode_nam
es
[
lockmode
],
lock
->
tag
.
relId
,
lock
->
tag
.
dbId
,
lock
->
tag
.
objId
.
blkno
);
lock
->
tag
.
relId
,
lock
->
tag
.
dbId
,
lock
->
tag
.
objId
.
blkno
);
break
;
break
;
}
}
...
@@ -1123,7 +1125,7 @@ LockRelease(LOCKMETHOD lockmethod, LOCKTAG *locktag,
...
@@ -1123,7 +1125,7 @@ LockRelease(LOCKMETHOD lockmethod, LOCKTAG *locktag,
Assert
(
holder
->
holding
[
lockmode
]
>=
0
);
Assert
(
holder
->
holding
[
lockmode
]
>=
0
);
SpinRelease
(
masterLock
);
SpinRelease
(
masterLock
);
elog
(
NOTICE
,
"LockRelease: you don't own a lock of type %s"
,
elog
(
NOTICE
,
"LockRelease: you don't own a lock of type %s"
,
lock_
typ
es
[
lockmode
]);
lock_
mode_nam
es
[
lockmode
]);
return
FALSE
;
return
FALSE
;
}
}
Assert
(
holder
->
nHolding
>
0
);
Assert
(
holder
->
nHolding
>
0
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment