diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-12-20 17:31:21 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-12-20 17:31:21 +0000 |
commit | d75b2ec4ebbc7fdb51088e89da47c6523bf2c640 (patch) | |
tree | 4f0a12508b01da4d98c663bbdadb4a2e1ae6837a /src/backend/postmaster/pgstat.c | |
parent | 1ee0ddf91df31669ca0d07871d3f5aa88791b78d (diff) |
This patch is the next step towards (re)allowing fork/exec.
Claudio Natoli
Diffstat (limited to 'src/backend/postmaster/pgstat.c')
-rw-r--r-- | src/backend/postmaster/pgstat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/postmaster/pgstat.c b/src/backend/postmaster/pgstat.c index 7eef1163034..38323f45ba2 100644 --- a/src/backend/postmaster/pgstat.c +++ b/src/backend/postmaster/pgstat.c @@ -13,7 +13,7 @@ * * Copyright (c) 2001-2003, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/backend/postmaster/pgstat.c,v 1.48 2003/11/29 19:51:55 pgsql Exp $ + * $PostgreSQL: pgsql/src/backend/postmaster/pgstat.c,v 1.49 2003/12/20 17:31:21 momjian Exp $ * ---------- */ #include "postgres.h" @@ -71,7 +71,7 @@ bool pgstat_is_running = false; * Local data * ---------- */ -static int pgStatSock = -1; +NON_EXEC_STATIC int pgStatSock = -1; static int pgStatPipe[2]; static struct sockaddr_storage pgStatAddr; static int pgStatPmPipe[2] = {-1, -1}; |