Re: pgsql: Move Assert() definitions to c.h - Mailing list pgsql-committers

From Alvaro Herrera
Subject Re: pgsql: Move Assert() definitions to c.h
Date
Msg-id 20130204153206.GD4963@alvh.no-ip.org
Whole thread Raw
In response to Re: pgsql: Move Assert() definitions to c.h  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: pgsql: Move Assert() definitions to c.h  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-committers
Tom Lane wrote:
> Alvaro Herrera <alvherre@alvh.no-ip.org> writes:
> > Move Assert() definitions to c.h
>
> This seems a bit odd.  Why didn't you move all of postgres.h's section 3
> into the new section in c.h?  The couple of declarations you left there
> are neither useful nor intelligible on their own.

One slight problem in this line:

extern PGDLLIMPORT bool assert_enabled;

This appears in line 622 in c.h, but PGDLLIMPORT is not defined till
line 965.  So we would have to put that declaration below section 9
"system specific hacks".  Having a separate
#if defined(USE_ASSERT_CHECKING) && !defined(FRONTEND)
section seems weird.

--
Álvaro Herrera                http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services


pgsql-committers by date:

Previous
From: Simon Riggs
Date:
Subject: pgsql: Reset master xmin when hot_standby_feedback disabled.
Next
From: Tom Lane
Date:
Subject: Re: pgsql: Move Assert() definitions to c.h