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/storage/ipc.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/storage/ipc.h')
-rw-r--r-- | src/include/storage/ipc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/storage/ipc.h b/src/include/storage/ipc.h index 18b8c5a2dce..3144d645289 100644 --- a/src/include/storage/ipc.h +++ b/src/include/storage/ipc.h @@ -11,7 +11,7 @@ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/storage/ipc.h,v 1.79 2010/01/02 16:58:08 momjian Exp $ + * $PostgreSQL: pgsql/src/include/storage/ipc.h,v 1.80 2010/01/16 00:04:41 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -62,7 +62,7 @@ typedef void (*shmem_startup_hook_type) (void); /* ipc.c */ -extern bool proc_exit_inprogress; +extern PGDLLIMPORT bool proc_exit_inprogress; extern void proc_exit(int code); extern void shmem_exit(int code); |