pgsql: Retry in FileRead and FileWrite if Windows returns

Поиск
Список
Период
Сортировка
От tgl@postgresql.org (Tom Lane)
Тема pgsql: Retry in FileRead and FileWrite if Windows returns
Дата
Msg-id 20051201202449.DCF739DD6C7@postgresql.org
обсуждение исходный текст
Список pgsql-committers
Log Message:
-----------
Retry in FileRead and FileWrite if Windows returns ERROR_NO_SYSTEM_RESOURCES.
Also add a retry for Unixen returning EINTR, which hasn't been reported
as an issue but at least theoretically could be.  Patch by Qingqing Zhou,
some minor adjustments by me.

Tags:
----
REL8_0_STABLE

Modified Files:
--------------
    pgsql/src/backend/storage/file:
        fd.c (r1.115.4.1 -> r1.115.4.2)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/storage/file/fd.c.diff?r1=1.115.4.1&r2=1.115.4.2)

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

Предыдущее
От: tgl@postgresql.org (Tom Lane)
Дата:
Сообщение: pgsql: Retry in FileRead and FileWrite if Windows returns
Следующее
От: Tom Lane
Дата:
Сообщение: Re: pgsql: Add comments about why errno is set to zero.