From: Tom Lane Date: Thu, 1 Mar 2007 20:06:56 +0000 (+0000) Subject: Fix miscalculation of stats collector's write delay, introduced in revision 1.117. X-Git-Tag: REL8_3_BETA1~1093 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=44f72c6e9e4e8c3d9c64fc606202b2c90ec1ceda;p=thirdparty%2Fpostgresql.git Fix miscalculation of stats collector's write delay, introduced in revision 1.117. --- diff --git a/src/backend/postmaster/pgstat.c b/src/backend/postmaster/pgstat.c index d6e8cd220a0..486dc6e48bf 100644 --- a/src/backend/postmaster/pgstat.c +++ b/src/backend/postmaster/pgstat.c @@ -13,7 +13,7 @@ * * Copyright (c) 2001-2007, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/backend/postmaster/pgstat.c,v 1.147 2007/02/15 23:23:23 alvherre Exp $ + * $PostgreSQL: pgsql/src/backend/postmaster/pgstat.c,v 1.148 2007/03/01 20:06:56 tgl Exp $ * ---------- */ #include "postgres.h" @@ -1716,7 +1716,7 @@ PgstatCollectorMain(int argc, char *argv[]) /* Preset the delay between status file writes */ MemSet(&write_timeout, 0, sizeof(struct itimerval)); write_timeout.it_value.tv_sec = PGSTAT_STAT_INTERVAL / 1000; - write_timeout.it_value.tv_usec = PGSTAT_STAT_INTERVAL % 1000; + write_timeout.it_value.tv_usec = (PGSTAT_STAT_INTERVAL % 1000) * 1000; /* * Read in an existing statistics stats file or initialize the stats to