pgsql: Fix infinite sleep and failes of send in Win32.

Поиск
Список
Период
Сортировка
От teodor@postgresql.org (Teodor Sigaev)
Тема pgsql: Fix infinite sleep and failes of send in Win32.
Дата
Msg-id 20061013140048.27A109FB272@postgresql.org
обсуждение исходный текст
Список pgsql-committers
Log Message:
-----------
Fix infinite sleep and failes of send in Win32.

1) pgwin32_waitforsinglesocket(): WaitForMultipleObjectsEx now called with
finite timeout (100ms) in case of FP_WRITE and UDP socket. If timeout occurs
then pgwin32_waitforsinglesocket() tries to write empty packet goes to
WaitForMultipleObjectsEx again.

2) pgwin32_send(): add loop around WSASend and pgwin32_waitforsinglesocket().
The reason is: for overlapped socket, 'ok' result from
pgwin32_waitforsinglesocket() isn't guarantee that socket is still free,
it can become busy again and following WSASend call will fail with
WSAEWOULDBLOCK error.

See http://archives.postgresql.org/pgsql-hackers/2006-10/msg00561.php

Tags:
----
REL8_0_STABLE

Modified Files:
--------------
    pgsql/src/backend/port/win32:
        socket.c (r1.8.4.1 -> r1.8.4.2)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/port/win32/socket.c.diff?r1=1.8.4.1&r2=1.8.4.2)

В списке pgsql-committers по дате отправления:

Предыдущее
От: teodor@postgresql.org (Teodor Sigaev)
Дата:
Сообщение: pgsql: Fix infinite sleep and failes of send in Win32.
Следующее
От: momjian@postgresql.org (Bruce Momjian)
Дата:
Сообщение: pgsql: Fix test_fsync compile on MinGW(win32) Hiroshi Saito