summaryrefslogtreecommitdiff
path: root/src/include/postmaster
diff options
context:
space:
mode:
authorTom Lane2004-05-30 03:50:15 +0000
committerTom Lane2004-05-30 03:50:15 +0000
commitc6719a2784e998d47713de78d284eec5ba8fd976 (patch)
tree83e2c6efafc183f89f7731b705b494ab8c97ab1e /src/include/postmaster
parent076a055acf3c55314de267c62b03191586d79cf6 (diff)
Implement new PostmasterIsAlive() check for WIN32, per Claudio Natoli.
In passing, align a few error messages with the style guide.
Diffstat (limited to 'src/include/postmaster')
-rw-r--r--src/include/postmaster/postmaster.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/include/postmaster/postmaster.h b/src/include/postmaster/postmaster.h
index d349018f4b5..301f7652ffe 100644
--- a/src/include/postmaster/postmaster.h
+++ b/src/include/postmaster/postmaster.h
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/postmaster/postmaster.h,v 1.1 2004/05/29 22:48:23 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/postmaster/postmaster.h,v 1.2 2004/05/30 03:50:15 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -30,6 +30,10 @@ extern bool Log_connections;
extern bool log_hostname;
extern char *rendezvous_name;
+#ifdef WIN32
+extern HANDLE PostmasterHandle;
+#endif
+
extern int PostmasterMain(int argc, char *argv[]);
extern void ClosePostmasterPorts(void);