pgsql: Cleanup for pull-up-isReset patch.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Cleanup for pull-up-isReset patch.
Date: 2011-05-24 21:57:44
Message-ID: E1QOzbk-00017u-GU@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Cleanup for pull-up-isReset patch.

Clear isReset before, not after, calling the context-specific alloc method,
so as to preserve the option to do a tail call in MemoryContextAlloc
(and also so this code isn't assuming that a failed alloc call won't have
changed the context's state before failing). Fix missed direct invocation
of reset method. Reformat a comment.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/b23aeb6519651146cf35b2b91d24596f37b40794

Modified Files
--------------
src/backend/utils/mmgr/aset.c | 10 +++++-----
src/backend/utils/mmgr/mcxt.c | 13 +++++++------
2 files changed, 12 insertions(+), 11 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2011-05-24 21:58:30 Re: pgsql: Pull up isReset flag from AllocSetContext to MemoryContext struc
Previous Message Magnus Hagander 2011-05-24 20:49:36 Re: pgsql: Add a "local" replication sample entry