diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2010-01-16 00:04:41 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2010-01-16 00:04:41 +0000 |
commit | 47a09eda891e329a148d55ab8c48f566475ccb4f (patch) | |
tree | fccff35d710b161de46d88b7acb33681beac9a48 /src/include/libpq/pqsignal.h | |
parent | 08f8d478ebc37e42f3ced07d17dae83d6a9a3810 (diff) | |
download | postgresql-47a09eda891e329a148d55ab8c48f566475ccb4f.tar.gz postgresql-47a09eda891e329a148d55ab8c48f566475ccb4f.zip |
PGDLLIMPORT-ize the remaining variables needed by walreceiver.
Diffstat (limited to 'src/include/libpq/pqsignal.h')
-rw-r--r-- | src/include/libpq/pqsignal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/libpq/pqsignal.h b/src/include/libpq/pqsignal.h index 4003030c2e4..01117f7f05a 100644 --- a/src/include/libpq/pqsignal.h +++ b/src/include/libpq/pqsignal.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/libpq/pqsignal.h,v 1.37 2010/01/02 16:58:04 momjian Exp $ + * $PostgreSQL: pgsql/src/include/libpq/pqsignal.h,v 1.38 2010/01/16 00:04:41 tgl Exp $ * * NOTES * This shouldn't be in libpq, but the monitor and some other @@ -27,7 +27,7 @@ extern sigset_t UnBlockSig, #define PG_SETMASK(mask) sigprocmask(SIG_SETMASK, mask, NULL) #else /* not HAVE_SIGPROCMASK */ -extern int UnBlockSig, +extern PGDLLIMPORT int UnBlockSig, BlockSig, StartupBlockSig; |