pgsql/src/backend/postmaster postmaster.c

From: Tom Lane <tgl(at)hub(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql/src/backend/postmaster postmaster.c
Date: 2001-02-08 00:35:10
Message-ID: 200102080035.f180ZAG09194@hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

CVSROOT: /home/projects/pgsql/cvsroot
Module name: pgsql
Changes by: tgl(at)hub(dot)org 01/02/07 19:35:10

Modified files:
src/backend/postmaster: postmaster.c

Log message:
When launching a child backend, take care to close file descriptors for
any other client connections that may exist (which would only happen if
another client is currently in the authentication cycle). This avoids
wastage of open descriptors in a child. It might also explain peculiar
behaviors like not closing connections when expected, since the kernel
will probably not signal EOF as long as some other backend is randomly
holding open a reference to the connection, even if the client went away
long since ...

Browse pgsql-committers by date

  From Date Subject
Next Message Hiroshi Inoue 2001-02-08 01:54:30 pgsql/src/interfaces/odbc connection.c
Previous Message Tom Lane 2001-02-07 23:42:27 pgsql/src/backend/libpq Tag: REL7_0_PATCHES cr ...