Re: Weird behaviour on Solaris: recv() returns ENOENT

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Weird behaviour on Solaris: recv() returns ENOENT
Дата
Msg-id 24602.1056686274@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Weird behaviour on Solaris: recv() returns ENOENT  (Forest Wilkinson <lyris-pg@tibit.com>)
Список pgsql-interfaces
Forest Wilkinson <lyris-pg@tibit.com> writes:
> I'm having a similar problem, but instead of ENOENT I'm getting what
> appears to be ECONNREFUSED.  (PQresultStatus() says "Connection
> refused".)  This is on a Solaris 9 box, with Postgres 7.3.2 and 7.3.3,
> using libpq in a multithreaded program.  At the same time, postgres ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

libpq is not as thread-safe as the documentation alleges :-(.  The
library itself doesn't do anything un-thread-safe, but it calls several
libc routines that are not thread-safe on many platforms.  We are trying
to fix this for 7.4.

I am not certain that this is the explanation for your problems though.
IIRC, most of the known gotchas occur during connection startup, and
would not explain a failure in a running connection.

Are you both honoring the restriction that two threads can't
concurrently do operations on the same PGconn object?  We provide
no locking that would make that safe, but consider it the application's
responsibility to do so if needed.  I strongly suspect that David's
problem is of this ilk, less sure about Forest's.
        regards, tom lane


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

Предыдущее
От: Forest Wilkinson
Дата:
Сообщение: Re: Weird behaviour on Solaris: recv() returns ENOENT
Следующее
От: Michael Meskes
Дата:
Сообщение: Re: ECPG thread success (kind of) on Linux