1
0
mirror of https://github.com/postgres/postgres.git synced 2026-01-26 09:41:40 +03:00

lwlock: Improve local variable name

In 9a385f6166 I used the variable name new_release_in_progress, but
new_wake_in_progress makes more sense given the flag name.

Suggested-by: Chao Li <li.evan.chao@gmail.com>
Discussion: https://postgr.es/m/AC5E365D-7AD9-47AE-B2C6-25756712B188@gmail.com
This commit is contained in:
Andres Freund
2026-01-14 11:15:38 -05:00
parent fa16e7fd84
commit 556c92a689

View File

@@ -929,7 +929,7 @@ LWLockWaitListUnlock(LWLock *lock)
static void
LWLockWakeup(LWLock *lock)
{
bool new_release_in_progress = false;
bool new_wake_in_progress = false;
bool wokeup_somebody = false;
proclist_head wakeup;
proclist_mutable_iter iter;
@@ -956,7 +956,7 @@ LWLockWakeup(LWLock *lock)
* that are just waiting for the lock to become free don't retry
* automatically.
*/
new_release_in_progress = true;
new_wake_in_progress = true;
/*
* Don't wakeup (further) exclusive locks.
@@ -995,7 +995,7 @@ LWLockWakeup(LWLock *lock)
/* compute desired flags */
if (new_release_in_progress)
if (new_wake_in_progress)
desired_state |= LW_FLAG_WAKE_IN_PROGRESS;
else
desired_state &= ~LW_FLAG_WAKE_IN_PROGRESS;