Tweak LWLock algorithms so that an awakened waiter for a lock is not
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 7 Jan 2002 16:33:00 +0000 (16:33 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 7 Jan 2002 16:33:00 +0000 (16:33 +0000)
commitc067334ad09728f9a29f116980f98602c0c0ed91
treeeb850805bda95ae4172629df74a3fed70c43819d
parent42de26c5dfb0cf872c2e1720c147b71222cd606d
Tweak LWLock algorithms so that an awakened waiter for a lock is not
granted the lock when awakened; the signal now only means that the lock
is potentially available.  The waiting process must retry its attempt
to get the lock when it gets to run.  This allows the lock releasing
process to re-acquire the lock later in its timeslice.  Since LWLocks
are usually held for short periods, it is possible for a process to
acquire and release the same lock many times in a timeslice.  The old
spinlock-based implementation of these locks allowed for that; but the
original coding of LWLock would force a process swap for each acquisition
if there was any contention.  Although this approach reopens the door to
process starvation (a waiter might repeatedly fail to get the lock),
the odds of that being a big problem seem low, and the performance cost
of the previous approach is considerable.
src/backend/storage/lmgr/lwlock.c