Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
47a09eda
Commit
47a09eda
authored
Jan 16, 2010
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PGDLLIMPORT-ize the remaining variables needed by walreceiver.
parent
08f8d478
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
src/include/access/xlog.h
src/include/access/xlog.h
+2
-2
src/include/libpq/pqsignal.h
src/include/libpq/pqsignal.h
+2
-2
src/include/replication/walreceiver.h
src/include/replication/walreceiver.h
+2
-2
src/include/storage/ipc.h
src/include/storage/ipc.h
+2
-2
No files found.
src/include/access/xlog.h
View file @
47a09eda
...
...
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/access/xlog.h,v 1.9
6 2010/01/15 09:19:06 heikki
Exp $
* $PostgreSQL: pgsql/src/include/access/xlog.h,v 1.9
7 2010/01/16 00:04:41 tgl
Exp $
*/
#ifndef XLOG_H
#define XLOG_H
...
...
@@ -132,7 +132,7 @@ typedef struct XLogRecData
struct
XLogRecData
*
next
;
/* next struct in chain, or NULL */
}
XLogRecData
;
extern
TimeLineID
ThisTimeLineID
;
/* current TLI */
extern
PGDLLIMPORT
TimeLineID
ThisTimeLineID
;
/* current TLI */
/*
* Prior to 8.4, all activity during recovery was carried out by Startup
...
...
src/include/libpq/pqsignal.h
View file @
47a09eda
...
...
@@ -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.3
7 2010/01/02 16:58:04 momjian
Exp $
* $PostgreSQL: pgsql/src/include/libpq/pqsignal.h,v 1.3
8 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
;
...
...
src/include/replication/walreceiver.h
View file @
47a09eda
...
...
@@ -5,7 +5,7 @@
*
* Portions Copyright (c) 2010-2010, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/include/replication/walreceiver.h,v 1.
1 2010/01/15 09:19:09 heikki
Exp $
* $PostgreSQL: pgsql/src/include/replication/walreceiver.h,v 1.
2 2010/01/16 00:04:41 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -58,7 +58,7 @@ typedef struct
slock_t
mutex
;
/* locks shared variables shown above */
}
WalRcvData
;
extern
WalRcvData
*
WalRcv
;
extern
PGDLLIMPORT
WalRcvData
*
WalRcv
;
extern
Size
WalRcvShmemSize
(
void
);
extern
void
WalRcvShmemInit
(
void
);
...
...
src/include/storage/ipc.h
View file @
47a09eda
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment