diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2007-07-01 02:22:23 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2007-07-01 02:22:23 +0000 |
commit | beba73763bbe612d7635eb97a29aa6377e79fa6b (patch) | |
tree | 64a8e99de0534c44e63946f0ee5b25354c5e3f01 /src | |
parent | 070907b241098431a94320a558c53f8d34777f29 (diff) | |
download | postgresql-beba73763bbe612d7635eb97a29aa6377e79fa6b.tar.gz postgresql-beba73763bbe612d7635eb97a29aa6377e79fa6b.zip |
Fix comments not updated in recent patch.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/storage/ipc/procarray.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/storage/ipc/procarray.c b/src/backend/storage/ipc/procarray.c index 9819adffcbb..51da9679f35 100644 --- a/src/backend/storage/ipc/procarray.c +++ b/src/backend/storage/ipc/procarray.c @@ -23,7 +23,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/storage/ipc/procarray.c,v 1.27 2007/06/29 17:07:39 alvherre Exp $ + * $PostgreSQL: pgsql/src/backend/storage/ipc/procarray.c,v 1.28 2007/07/01 02:22:23 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -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; /* |