From: Bruce Momjian Date: Wed, 23 Oct 2002 23:33:08 +0000 (+0000) Subject: Add mention of postgres signals to reference page X-Git-Tag: REL7_3~182 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3675d064c9f56a22156cfb8053a643dcd4f998ed;p=thirdparty%2Fpostgresql.git Add mention of postgres signals to reference page Joseph Shraibman --- diff --git a/doc/src/sgml/ref/postgres-ref.sgml b/doc/src/sgml/ref/postgres-ref.sgml index ed9a24baba4..fa9f29462c4 100644 --- a/doc/src/sgml/ref/postgres-ref.sgml +++ b/doc/src/sgml/ref/postgres-ref.sgml @@ -1,5 +1,5 @@ @@ -371,6 +371,21 @@ PostgreSQL documentation + + Notes + + + To stop a running query use the SIGINT signal. To + tell postgres to reread the config file, + use a SIGHUP signal. The + postmaster uses SIGTERM + to tell a postgres process to quit normally and + SIGQUIT to terminate without the normal cleanup. + These should not be used by users. + + + + Usage