libpq_r

From: Lee Kindness <lkindness(at)csl(dot)co(dot)uk>
To: PostgreSQL Development <pgsql-hackers(at)postgresql(dot)org>
Cc: Lee Kindness <lkindness(at)csl(dot)co(dot)uk>
Subject: libpq_r
Date: 2003-07-24 08:22:19
Message-ID: 16159.38715.805749.963309@kelvin.csl.co.uk
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Guys, take a look at what was done in libpq to make it
thread-safe... No locks! No overheaded - just using "proper" reentrant
functions...

If we have libpq_r then we're making a complete hash of it all - being
reentrant is good, even if you're not using threads!

Now, ecpg is another issue...

L.

Bruce Momjian writes:
> Shridhar Daithankar wrote:
> > I repeat what I have said earlier. If there are two libraries A using libecpg_r
> > and B, using libecpg, then program linking against both of them is going to
> > have tough time living with symbol conflicts.
> >
> > I suppose problem will be reproducible even under freeBSD if you try to create
> > a postgresql function in C which uses threads. Link the library against libc_r
> > and link postgresql against libc. It would run into problems.
> >
> > I am just stating my experiences.I might have missed solution to this problem.
> >
> > But overall I like GNU libc approach of everything thread safe by default. If
> > thread performance is an issue, then it should be improved. Not worked around
> > with two libraries.
>
> I thought glibc was the one to introduce libc_r in the first place ---
> are they making libc thread-safe now?
>
> What OS's are still using libc_r for threaded-ness? I never liked that
> approach myself, and I resist adding it to our setup unless it is
> required.
>
> One problem now is that we don't have a way to create a separate libpq_r
> for operating systems that use libc_r. We just create libpq and it is
> thread-safe.
>
> As for the configure flag, we still need it because we don't know the
> flags required by all our supported OS's.

In response to

  • Re: at 2003-07-23 17:35:25 from Bruce Momjian

Responses

  • Re: libpq_r at 2003-07-24 12:52:37 from Bruce Momjian
  • Re: libpq_r at 2003-07-24 14:04:28 from Peter Eisentraut

Browse pgsql-hackers by date

  From Date Subject
Next Message Rod Taylor 2003-07-24 10:14:16 Re: this is in plain text (row level locks)
Previous Message Christoph Haller 2003-07-24 06:57:52 Re: SELECT FOR UPDATE NOWAIT