pgsql/src/include/utils (elog.h) - Mailing list pgsql-committers

From tgl@postgresql.org
Subject pgsql/src/include/utils (elog.h)
Date
Msg-id 200101122154.f0CLs2b92874@hub.org
Whole thread Raw
List pgsql-committers
  Date: Friday, January 12, 2001 @ 16:54:02
Author: tgl

Update of /home/projects/pgsql/cvsroot/pgsql/src/include/utils
     from hub.org:/home/projects/pgsql/tmp/cvs-serv92773/src/include/utils

Modified Files:
    elog.h

-----------------------------  Log Message  -----------------------------

Add more critical-section calls: all code sections that hold spinlocks
are now critical sections, so as to ensure die() won't interrupt us while
we are munging shared-memory data structures.  Avoid insecure intermediate
states in some code that proc_exit will call, like palloc/pfree.  Rename
START/END_CRIT_CODE to START/END_CRIT_SECTION, since that seems to be
what people tend to call them anyway, and make them be called with () like
a function call, in hopes of not confusing pg_indent.
I doubt that this is sufficient to make SIGTERM safe anywhere; there's
just too much code that could get invoked during proc_exit().


pgsql-committers by date:

Previous
From: tgl@postgresql.org
Date:
Subject: pgsql/src/backend/tcop (postgres.c)
Next
From: tgl@postgresql.org
Date:
Subject: pgsql/src/backend/utils/init (postinit.c)