diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-10-23 23:33:08 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-10-23 23:33:08 +0000 |
commit | 3675d064c9f56a22156cfb8053a643dcd4f998ed (patch) | |
tree | 2f22906e8d7bea1f09bb01a29537a825f1db3161 /doc/src/sgml/ref/postgres-ref.sgml | |
parent | 586510f774d7d03bbb2acd344ada6a5bf888e76b (diff) | |
download | postgresql-3675d064c9f56a22156cfb8053a643dcd4f998ed.tar.gz postgresql-3675d064c9f56a22156cfb8053a643dcd4f998ed.zip |
Add mention of postgres signals to reference page
Joseph Shraibman
Diffstat (limited to 'doc/src/sgml/ref/postgres-ref.sgml')
-rw-r--r-- | doc/src/sgml/ref/postgres-ref.sgml | 17 |
1 files changed, 16 insertions, 1 deletions
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 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/postgres-ref.sgml,v 1.28 2002/10/11 23:03:48 petere Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/postgres-ref.sgml,v 1.29 2002/10/23 23:33:08 momjian Exp $ PostgreSQL documentation --> @@ -372,6 +372,21 @@ PostgreSQL documentation </refsect1> <refsect1> + <title>Notes</title> + + <para> + To stop a running query use the <literal>SIGINT</literal> signal. To + tell <application>postgres</application> to reread the config file, + use a <literal>SIGHUP</literal> signal. The + <application>postmaster</application> uses <literal>SIGTERM</literal> + to tell a postgres process to quit normally and + <literal>SIGQUIT</literal> to terminate without the normal cleanup. + These <emphasis>should not</emphasis> be used by users. + </para> + + </refsect1> + + <refsect1> <title>Usage</title> <para> |