pgsql: Treat EPERM as a non-error case when checking to see if old

From: tgl(at)svr1(dot)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Treat EPERM as a non-error case when checking to see if old
Date: 2005-03-18 03:48:51
Message-ID: 20050318034851.EA64656412@svr1.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Treat EPERM as a non-error case when checking to see if old postmaster
is still alive. This improves our odds of not getting fooled by an
unrelated process when checking a stale lock file. Other checks already
in place, plus one newly added in checkDataDir(), ensure that we cannot
attempt to usurp the place of a postmaster belonging to a different userid,
so there is no need to error out. Add comments indicating the importance
of these other checks.

Modified Files:
--------------
pgsql/src/backend/postmaster:
postmaster.c (r1.446 -> r1.447)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/postmaster/postmaster.c.diff?r1=1.446&r2=1.447)
pgsql/src/backend/utils/init:
miscinit.c (r1.137 -> r1.138)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/init/miscinit.c.diff?r1=1.137&r2=1.138)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2005-03-18 03:49:22 pgsql: Treat EPERM as a non-error case when checking to see if old
Previous Message Neil Conway 2005-03-17 23:45:41 pgsql: This patch moves some code for preprocessing FOR UPDATE from