pgsql: PGDLLIMPORT-ify MainLWLockArray, ProcDiePending, proc_exit_inpro

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: PGDLLIMPORT-ify MainLWLockArray, ProcDiePending, proc_exit_inpro
Date: 2014-02-17 01:12:51
Message-ID: E1WFClP-0003YA-Bk@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

PGDLLIMPORT-ify MainLWLockArray, ProcDiePending, proc_exit_inprogress.

These are needed in HEAD to make assorted contrib modules build on Windows.
Now that all the MSVC and Mingw buildfarm members seem to be on the same
page about the need for them, we can have some confidence that future
problems of this ilk will be detected promptly; there seems nothing more
to be learned by delaying this fix further.

I chose to mark QueryCancelPending as well, since it's easy to imagine code
that wants to touch ProcDiePending also caring about QueryCancelPending.

Branch
------
master

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

Modified Files
--------------
src/include/miscadmin.h | 4 ++--
src/include/storage/ipc.h | 2 +-
src/include/storage/lwlock.h | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2014-02-17 03:09:16 pgsql: Release notes for 9.3.3, 9.2.7, 9.1.12, 9.0.16, 8.4.20.
Previous Message Tom Lane 2014-02-17 01:01:30 pgsql: Fix unportable coding in tarCreateHeader().