From c6719a2784e998d47713de78d284eec5ba8fd976 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 30 May 2004 03:50:15 +0000 Subject: Implement new PostmasterIsAlive() check for WIN32, per Claudio Natoli. In passing, align a few error messages with the style guide. --- src/include/postmaster/postmaster.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/include/postmaster') diff --git a/src/include/postmaster/postmaster.h b/src/include/postmaster/postmaster.h index d349018f4b..301f7652ff 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); -- cgit v1.2.1