]> granicus.if.org Git - postgresql/commit
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)
commit5b9a058384e714b89e050fc0b6381f97037c665a
tree093f4ca167b5303deabef04c16b63f4ed4a3051c
parent54452833efced6473ec96ecce3848708d26335be
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