aboutsummaryrefslogtreecommitdiff
path: root/src/backend
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2011-09-12 15:24:29 -0300
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2011-09-13 21:42:49 -0300
commit86822df9b5d5fe16d2528c7fc9428137414faa4f (patch)
tree7362461cb762433886a364717e42c22941bb51c0 /src/backend
parent6693c9a5ed3ac9c07160039742dde8aa67e96ecf (diff)
downloadpostgresql-86822df9b5d5fe16d2528c7fc9428137414faa4f.tar.gz
postgresql-86822df9b5d5fe16d2528c7fc9428137414faa4f.zip
Split walsender.h in public/private headers
This dramatically cuts short the number of headers the public one brings into whatever includes it.
Diffstat (limited to 'src/backend')
-rw-r--r--src/backend/replication/basebackup.c1
-rw-r--r--src/backend/replication/repl_gram.y1
-rw-r--r--src/backend/replication/syncrep.c1
-rw-r--r--src/backend/replication/walsender.c1
4 files changed, 4 insertions, 0 deletions
diff --git a/src/backend/replication/basebackup.c b/src/backend/replication/basebackup.c
index 785b9998ff6..4841095d176 100644
--- a/src/backend/replication/basebackup.c
+++ b/src/backend/replication/basebackup.c
@@ -25,6 +25,7 @@
#include "nodes/pg_list.h"
#include "replication/basebackup.h"
#include "replication/walsender.h"
+#include "replication/walsender_private.h"
#include "storage/fd.h"
#include "storage/ipc.h"
#include "utils/builtins.h"
diff --git a/src/backend/replication/repl_gram.y b/src/backend/replication/repl_gram.y
index 70b34ff82e2..b3fd051e934 100644
--- a/src/backend/replication/repl_gram.y
+++ b/src/backend/replication/repl_gram.y
@@ -19,6 +19,7 @@
#include "nodes/makefuncs.h"
#include "nodes/replnodes.h"
#include "replication/walsender.h"
+#include "replication/walsender_private.h"
/* Result of the parsing is returned here */
diff --git a/src/backend/replication/syncrep.c b/src/backend/replication/syncrep.c
index 542bdf2bceb..95de6c7cb3c 100644
--- a/src/backend/replication/syncrep.c
+++ b/src/backend/replication/syncrep.c
@@ -49,6 +49,7 @@
#include "miscadmin.h"
#include "replication/syncrep.h"
#include "replication/walsender.h"
+#include "replication/walsender_private.h"
#include "storage/pmsignal.h"
#include "storage/proc.h"
#include "tcop/tcopprot.h"
diff --git a/src/backend/replication/walsender.c b/src/backend/replication/walsender.c
index 6e1d82acb11..5d1c5180f2d 100644
--- a/src/backend/replication/walsender.c
+++ b/src/backend/replication/walsender.c
@@ -51,6 +51,7 @@
#include "replication/walprotocol.h"
#include "replication/walreceiver.h"
#include "replication/walsender.h"
+#include "replication/walsender_private.h"
#include "storage/fd.h"
#include "storage/ipc.h"
#include "storage/pmsignal.h"