summaryrefslogtreecommitdiff
path: root/src/include/postmaster
diff options
context:
space:
mode:
authorPavan Deolasee2016-03-11 08:48:50 +0000
committerPavan Deolasee2016-10-18 10:00:51 +0000
commit384c674902b961586d9c489c4ec79fe5a80b1ba6 (patch)
treea08ec2a2dec4eff1c8220b7bd1641d0208590874 /src/include/postmaster
parentefd792e41d087cc465d0e0c4272bdb98764bc003 (diff)
Fix several compiler warnings
Diffstat (limited to 'src/include/postmaster')
-rw-r--r--src/include/postmaster/clustermon.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/postmaster/clustermon.h b/src/include/postmaster/clustermon.h
index ca9dc1b304..eb5bb84701 100644
--- a/src/include/postmaster/clustermon.h
+++ b/src/include/postmaster/clustermon.h
@@ -35,8 +35,9 @@ extern bool IsClusterMonitorProcess(void);
/* Functions to start cluster monitor process, called from postmaster */
int ClusterMonitorInit(void);
extern int StartClusterMonitor(void);
-GlobalTransactionId ClusterMonitorGetGlobalXmin(void);
-void ClusterMonitorSetGlobalXmin(GlobalTransactionId xmin);
+extern GlobalTransactionId ClusterMonitorGetGlobalXmin(void);
+extern void ClusterMonitorSetGlobalXmin(GlobalTransactionId xmin);
+extern GlobalTransactionId ClusterMonitorGetReportingGlobalXmin(void);
#ifdef EXEC_BACKEND
extern void ClusterMonitorIAm(void);