Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
19815273
Commit
19815273
authored
Dec 28, 2001
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve LOCK_DEBUG logging code for LWLocks.
parent
ce286ff6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
2 deletions
+17
-2
src/backend/storage/lmgr/lwlock.c
src/backend/storage/lmgr/lwlock.c
+17
-2
No files found.
src/backend/storage/lmgr/lwlock.c
View file @
19815273
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lwlock.c,v 1.
4 2001/12/10 21:13:50
tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lwlock.c,v 1.
5 2001/12/28 23:26:04
tgl Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -64,7 +64,7 @@ static LWLockId held_lwlocks[MAX_SIMUL_LWLOCKS];
...
@@ -64,7 +64,7 @@ static LWLockId held_lwlocks[MAX_SIMUL_LWLOCKS];
bool
Trace_lwlocks
=
false
;
bool
Trace_lwlocks
=
false
;
inline
static
void
inline
static
void
PRINT_LWDEBUG
(
const
char
*
where
,
LWLockId
lockid
,
const
LWLock
*
lock
)
PRINT_LWDEBUG
(
const
char
*
where
,
LWLockId
lockid
,
const
volatile
LWLock
*
lock
)
{
{
if
(
Trace_lwlocks
)
if
(
Trace_lwlocks
)
elog
(
DEBUG
,
"%s(%d): excl %d shared %d head %p"
,
elog
(
DEBUG
,
"%s(%d): excl %d shared %d head %p"
,
...
@@ -72,8 +72,17 @@ PRINT_LWDEBUG(const char *where, LWLockId lockid, const LWLock *lock)
...
@@ -72,8 +72,17 @@ PRINT_LWDEBUG(const char *where, LWLockId lockid, const LWLock *lock)
(
int
)
lock
->
exclusive
,
lock
->
shared
,
lock
->
head
);
(
int
)
lock
->
exclusive
,
lock
->
shared
,
lock
->
head
);
}
}
inline
static
void
LOG_LWDEBUG
(
const
char
*
where
,
LWLockId
lockid
,
const
char
*
msg
)
{
if
(
Trace_lwlocks
)
elog
(
DEBUG
,
"%s(%d): %s"
,
where
,
(
int
)
lockid
,
msg
);
}
#else
/* not LOCK_DEBUG */
#else
/* not LOCK_DEBUG */
#define PRINT_LWDEBUG(a,b,c)
#define PRINT_LWDEBUG(a,b,c)
#define LOG_LWDEBUG(a,b,c)
#endif
/* LOCK_DEBUG */
#endif
/* LOCK_DEBUG */
...
@@ -265,6 +274,8 @@ LWLockAcquire(LWLockId lockid, LWLockMode mode)
...
@@ -265,6 +274,8 @@ LWLockAcquire(LWLockId lockid, LWLockMode mode)
* received, so that the lock manager or signal manager will see
* received, so that the lock manager or signal manager will see
* the received signal when it next waits.
* the received signal when it next waits.
*/
*/
LOG_LWDEBUG
(
"LWLockAcquire"
,
lockid
,
"waiting"
);
for
(;;)
for
(;;)
{
{
/* "false" means cannot accept cancel/die interrupt here. */
/* "false" means cannot accept cancel/die interrupt here. */
...
@@ -274,6 +285,8 @@ LWLockAcquire(LWLockId lockid, LWLockMode mode)
...
@@ -274,6 +285,8 @@ LWLockAcquire(LWLockId lockid, LWLockMode mode)
extraWaits
++
;
extraWaits
++
;
}
}
LOG_LWDEBUG
(
"LWLockAcquire"
,
lockid
,
"awakened"
);
/*
/*
* The awakener already updated the lock struct's state, so we
* The awakener already updated the lock struct's state, so we
* don't need to do anything more to it. Just need to fix the
* don't need to do anything more to it. Just need to fix the
...
@@ -352,6 +365,7 @@ LWLockConditionalAcquire(LWLockId lockid, LWLockMode mode)
...
@@ -352,6 +365,7 @@ LWLockConditionalAcquire(LWLockId lockid, LWLockMode mode)
{
{
/* Failed to get lock, so release interrupt holdoff */
/* Failed to get lock, so release interrupt holdoff */
RESUME_INTERRUPTS
();
RESUME_INTERRUPTS
();
LOG_LWDEBUG
(
"LWLockConditionalAcquire"
,
lockid
,
"failed"
);
}
}
else
else
{
{
...
@@ -448,6 +462,7 @@ LWLockRelease(LWLockId lockid)
...
@@ -448,6 +462,7 @@ LWLockRelease(LWLockId lockid)
*/
*/
while
(
head
!=
NULL
)
while
(
head
!=
NULL
)
{
{
LOG_LWDEBUG
(
"LWLockRelease"
,
lockid
,
"release waiter"
);
proc
=
head
;
proc
=
head
;
head
=
proc
->
lwWaitLink
;
head
=
proc
->
lwWaitLink
;
proc
->
lwWaitLink
=
NULL
;
proc
->
lwWaitLink
=
NULL
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment