Re: Weird behaviour on Solaris: recv() returns ENOENT - Mailing list pgsql-interfaces

From Tom Lane
Subject Re: Weird behaviour on Solaris: recv() returns ENOENT
Date
Msg-id 24602.1056686274@sss.pgh.pa.us
Whole thread Raw
In response to Re: Weird behaviour on Solaris: recv() returns ENOENT  (Forest Wilkinson <lyris-pg@tibit.com>)
List 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 by date:

Previous
From: Forest Wilkinson
Date:
Subject: Re: Weird behaviour on Solaris: recv() returns ENOENT
Next
From: Michael Meskes
Date:
Subject: Re: ECPG thread success (kind of) on Linux