Fix Windows implementation of PGSemaphoreLock.
authorTom Lane <[email protected]>
Thu, 10 May 2012 17:36:28 +0000 (13:36 -0400)
committerTom Lane <[email protected]>
Thu, 10 May 2012 17:36:28 +0000 (13:36 -0400)
commitde48dbade3930522dd33446b84dcc5407bec7f72
tree153f8d4f3551e74e0b0659993863ca6d8f812551
parent564b257e44397f9d77a928b22a02b76a4b1534ac
Fix Windows implementation of PGSemaphoreLock.

The original coding failed to reset ImmediateInterruptOK before returning,
which would potentially allow a subsequent query-cancel interrupt to be
accepted at an unsafe point.  This is a really nasty bug since it's so hard
to predict the consequences, but they could be unpleasant.

Also, ensure that signal handlers are serviced before this function
returns, even if the semaphore is already set.  This should make the
behavior more like Unix.

Back-patch to all supported versions.
src/backend/port/win32_sema.c