Fix comments not updated in recent patch.
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 1 Jul 2007 02:22:23 +0000 (02:22 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 1 Jul 2007 02:22:23 +0000 (02:22 +0000)
src/backend/storage/ipc/procarray.c

index 65ea1bcdeac63b37e1c44d6041434b5e04db9337..96fcc55c00420aa6744ce84a5e80c3c4c494917c 100644 (file)
@@ -953,7 +953,7 @@ CountUserBackends(Oid roleid)
  *
  * If there are other backends in the DB, we will wait a maximum of 5 seconds
  * for them to exit.  Autovacuum backends are encouraged to exit early by
- * sending them SIGINT, but normal user backends are just waited for.
+ * sending them SIGTERM, but normal user backends are just waited for.
  *
  * The current backend is always ignored; it is caller's responsibility to
  * check whether the current backend uses the given DB, if it's important.
@@ -998,7 +998,7 @@ CheckOtherDBBackends(Oid databaseId)
 
                        if (proc->isAutovacuum)
                        {
-                               /* an autovacuum --- send it SIGINT before sleeping */
+                               /* an autovacuum --- send it SIGTERM before sleeping */
                                int             autopid = proc->pid;
 
                                /*