/*
* postmaster.c - function prototypes
*/
+static void CloseServerPorts(int status, Datum arg);
static void getInstallationPaths(const char *argv0);
static void checkDataDir(void);
static void pmdaemonize(void);
ereport(FATAL,
(errmsg("no socket created for listening")));
+ /*
+ * Set up an on_proc_exit function that's charged with closing the sockets
+ * again at postmaster shutdown. You might think we should have done this
+ * earlier, but we want it to run before not after the proc_exit callback
+ * that will remove the Unix socket file.
+ */
+ on_proc_exit(CloseServerPorts, 0);
+
/*
* Set up shared memory and semaphores.
*/
}
+/*
+ * on_proc_exit callback to close server's listen sockets
+ */
+static void
+CloseServerPorts(int status, Datum arg)
+{
+ int i;
+
+ /*
+ * First, explicitly close all the socket FDs. We used to just let this
+ * happen implicitly at postmaster exit, but it's better to close them
+ * before we remove the postmaster.pid lockfile; otherwise there's a race
+ * condition if a new postmaster wants to re-use the TCP port number.
+ */
+ for (i = 0; i < MAXLISTEN; i++)
+ {
+ if (ListenSocket[i] != PGINVALID_SOCKET)
+ {
+ StreamClose(ListenSocket[i]);
+ ListenSocket[i] = PGINVALID_SOCKET;
+ }
+ }
+
+ /*
+ * Removal of the Unix socket file and socket lockfile will happen in
+ * later on_proc_exit callbacks.
+ */
+}
+
+
/*
* Compute and check the directory paths to files that are part of the
* installation (as deduced from the postgres executable's own location)