diff --git a/doc/src/sgml/ref/postgres-ref.sgml b/doc/src/sgml/ref/postgres-ref.sgml
new file mode 100644
index 4e5cd02..a1d014d
*** a/doc/src/sgml/ref/postgres-ref.sgml
--- b/doc/src/sgml/ref/postgres-ref.sgml
*************** PostgreSQL documentation
*** 726,739 ****
To cancel a running query, send the SIGINT signal
! to the process running that command.
! The postgres server uses SIGTERM
! to tell subordinate server processes to quit normally and
! SIGQUIT to terminate without the normal cleanup.
! These signals should not be used by users. It
is also unwise to send SIGKILL to a server
process — the main postgres process will
interpret this as a crash and will force all the sibling processes
--- 726,743 ----
To cancel a running query, send the SIGINT signal
! to the process running that command. To terminate a backend process
! cleanly, send SIGTERM to that process. See
! also pg_cancel_backend> and pg_terminate_backend>
! in for the SQL-callable equivalents
! of these two actions.
! The postgres server uses SIGQUIT
! to tell subordinate server processes to terminate without normal
! cleanup.
! This signal should not be used by users. It
is also unwise to send SIGKILL to a server
process — the main postgres process will
interpret this as a crash and will force all the sibling processes