diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-09-08 01:10:21 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-09-08 01:10:21 +0000 |
commit | 02b1a7fd5160d4117973527dc6d4214cd225a97c (patch) | |
tree | 47cc4a70b26f65537003f4ee5404866a45087571 /src/backend/libpq/pqsignal.c | |
parent | 6b9f94022c481fdcde45d491b61eddb414454aea (diff) | |
download | postgresql-02b1a7fd5160d4117973527dc6d4214cd225a97c.tar.gz |
Clean up some confusion about where and how to set whereToSendOutput.
We will no longer try to send elog messages to the client before we have
initialized backend libpq (oops); however, reporting bogus commandline
switches via elog does work now (not irrelevant, because of PGOPTIONS).
Fix problem with inappropriate sending of checkpoint-process messages
to stderr.
Diffstat (limited to 'src/backend/libpq/pqsignal.c')
-rw-r--r-- | src/backend/libpq/pqsignal.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/backend/libpq/pqsignal.c b/src/backend/libpq/pqsignal.c index 028db10408..effe2e09cf 100644 --- a/src/backend/libpq/pqsignal.c +++ b/src/backend/libpq/pqsignal.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/libpq/pqsignal.c,v 1.22 2001/09/07 16:12:48 wieck Exp $ + * $Header: /cvsroot/pgsql/src/backend/libpq/pqsignal.c,v 1.23 2001/09/08 01:10:20 tgl Exp $ * * NOTES * This shouldn't be in libpq, but the monitor and some other @@ -46,12 +46,15 @@ /* - * Initialize BlockSig and UnBlockSig. + * Initialize BlockSig, UnBlockSig, and AuthBlockSig. * * BlockSig is the set of signals to block when we are trying to block * signals. This includes all signals we normally expect to get, but NOT * signals that should never be turned off. * + * AuthBlockSig is the set of signals to block during authentication; + * it's essentially BlockSig minus SIGTERM and SIGQUIT. + * * UnBlockSig is the set of signals to block when we don't want to block * signals (is this ever nonzero??) */ |