]> granicus.if.org Git - postgresql/commit
Handle WAIT_IO_COMPLETION return from WaitForMultipleObjectsEx().
authorNoah Misch <noah@leadboat.com>
Fri, 25 Jul 2014 22:51:48 +0000 (18:51 -0400)
committerNoah Misch <noah@leadboat.com>
Fri, 25 Jul 2014 22:51:48 +0000 (18:51 -0400)
commitde35a9771004b9d521c9d5882db6be4fba20e80e
treea223bba7bc921b2bef51a443fa6d5670fd5c4852
parente565ff7553e60b3d13dde410ef96f5256c5525eb
Handle WAIT_IO_COMPLETION return from WaitForMultipleObjectsEx().

This return code is possible wherever we pass bAlertable = TRUE; it
arises when Windows caused the current thread to run an "I/O completion
routine" or an "asynchronous procedure call".  PostgreSQL does not
provoke either of those Windows facilities, hence this bug remaining
largely unnoticed, but other local code might do so.  Due to a shortage
of complaints, no back-patch for now.

Per report from Shiv Shivaraju Gowda, this bug can cause
PGSemaphoreLock() to PANIC.  The bug can also cause select() to report
timeout expiration too early, which might confuse pgstat_init() and
CheckRADIUSAuth().
src/backend/port/win32/socket.c
src/backend/port/win32_sema.c