Re: exit() calls in libraries - Mailing list pgsql-hackers

From Alvaro Herrera
Subject Re: exit() calls in libraries
Date
Msg-id 1323106543-sup-1163@alvh.no-ip.org
Whole thread Raw
In response to exit() calls in libraries  (Peter Eisentraut <peter_e@gmx.net>)
Responses Re: exit() calls in libraries  (Peter Eisentraut <peter_e@gmx.net>)
List pgsql-hackers
Excerpts from Peter Eisentraut's message of lun dic 05 14:27:41 -0300 2011:

> The cases in libpq are
>
>       * various places in fe-print.c calling exit(1) when malloc fails,
>         presumably having run out of memory, and
>       * in libpq-int.h the macro PGTHREAD_ERROR, which is called in
>         several places in fe-connect.c and fe-secure.c.
>
> Are these appropriate behaviors?  The fe-print.c stuff probably isn't
> used much anymore.  But the threading stuff is, and it encroaches on the
> exit status space of the libpq-using program.  And does it even make
> sense to call exit() if the thread locking is busted?  Maybe abort()
> would work better?

Having had to battle some exit() calls in the PHP interpreter back when
I was working in PL/php, I agree that they shouldn't be there -- abort()
seems more appropriate if the system is truly busted.  As for the
fr-print.c code, I'm not really sure why don't we just remove it.

--
Álvaro Herrera <alvherre@commandprompt.com>
The PostgreSQL Company - Command Prompt, Inc.
PostgreSQL Replication, Consulting, Custom Development, 24x7 support


pgsql-hackers by date:

Previous
From: Jan Urbański
Date:
Subject: Re: plpython SPI cursors
Next
From: Bruce Momjian
Date:
Subject: Re: plpython SPI cursors