diff options
author | Robert Haas <rhaas@postgresql.org> | 2016-10-04 12:17:14 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2016-10-04 12:18:05 -0400 |
commit | 9445d1121d28d0a8ae32c907320b5d6ff985077b (patch) | |
tree | 445b6bcf9cbda0503e9dedf5057d57d705f29214 | |
parent | d4fca5e6c7363ba6ee4de7b8d72d68064fa864ca (diff) | |
download | postgresql-9445d1121d28d0a8ae32c907320b5d6ff985077b.tar.gz postgresql-9445d1121d28d0a8ae32c907320b5d6ff985077b.zip |
Fix Windows compile break in 6f3bd98ebfc008cbd676da777bb0b2376c4c4bfa.
-rw-r--r-- | src/backend/postmaster/pgstat.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/postmaster/pgstat.c b/src/backend/postmaster/pgstat.c index 8c9d06fdaad..5c6cb6b2667 100644 --- a/src/backend/postmaster/pgstat.c +++ b/src/backend/postmaster/pgstat.c @@ -3919,7 +3919,8 @@ PgstatCollectorMain(int argc, char *argv[]) wr = WaitLatchOrSocket(MyLatch, WL_LATCH_SET | WL_POSTMASTER_DEATH | WL_SOCKET_READABLE | WL_TIMEOUT, pgStatSock, - 2 * 1000L /* msec */ ); + 2 * 1000L /* msec */, + WAIT_EVENT_PGSTAT_MAIN); #endif /* |