]> granicus.if.org Git - postgresql/commitdiff
minor code cleanup - replace useless struct timezone argument to
authorAndrew Dunstan <andrew@dunslane.net>
Sat, 22 Oct 2005 14:27:29 +0000 (14:27 +0000)
committerAndrew Dunstan <andrew@dunslane.net>
Sat, 22 Oct 2005 14:27:29 +0000 (14:27 +0000)
gettimeofday with NULL in a few places, making it consistent with
usage elsewhere.

src/backend/postmaster/postmaster.c
src/backend/utils/adt/nabstime.c
src/backend/utils/misc/pg_rusage.c

index ad6477a372d34004a6bc5d8ee37c6f3c3187381d..956dbf98739eeb80e56b76fd5da3512a0cfe9a9e 100644 (file)
@@ -37,7 +37,7 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.471 2005/10/20 20:05:44 tgl Exp $
+ *       $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.472 2005/10/22 14:27:28 adunstan Exp $
  *
  * NOTES
  *
@@ -1148,9 +1148,8 @@ ServerLoop(void)
                                last_touch_time;
        struct timeval earlier,
                                later;
-       struct timezone tz;
 
-       gettimeofday(&earlier, &tz);
+       gettimeofday(&earlier, NULL);
        last_touch_time = time(NULL);
 
        nSockets = initMasks(&readmask);
@@ -1207,7 +1206,7 @@ ServerLoop(void)
                         */
                        while (random_seed == 0)
                        {
-                               gettimeofday(&later, &tz);
+                               gettimeofday(&later, NULL);
 
                                /*
                                 * We are not sure how much precision is in tv_usec, so we
index 40e7522b879949bc3d39aee01e1328932d9e03be..63e5347c5b25a815f9e9b591a7d33d7945679672 100644 (file)
@@ -10,7 +10,7 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/utils/adt/nabstime.c,v 1.145 2005/10/15 02:49:29 momjian Exp $
+ *       $PostgreSQL: pgsql/src/backend/utils/adt/nabstime.c,v 1.146 2005/10/22 14:27:29 adunstan Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -1584,14 +1584,13 @@ Datum
 timeofday(PG_FUNCTION_ARGS)
 {
        struct timeval tp;
-       struct timezone tpz;
        char            templ[128];
        char            buf[128];
        text       *result;
        int                     len;
        pg_time_t       tt;
 
-       gettimeofday(&tp, &tpz);
+       gettimeofday(&tp, NULL);
        tt = (pg_time_t) tp.tv_sec;
        pg_strftime(templ, sizeof(templ), "%a %b %d %H:%M:%S.%%06d %Y %Z",
                                pg_localtime(&tt, global_timezone));
index cf7bbb427cb65c56ec24f59c634624341dcd9ace..dffbb699d494383a54cb5b8bd5faaa1a003ba420 100644 (file)
@@ -9,7 +9,7 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/utils/misc/pg_rusage.c,v 1.2 2005/10/15 02:49:36 momjian Exp $
+ *       $PostgreSQL: pgsql/src/backend/utils/misc/pg_rusage.c,v 1.3 2005/10/22 14:27:29 adunstan Exp $
  *
  *-------------------------------------------------------------------------
  */
 void
 pg_rusage_init(PGRUsage *ru0)
 {
-       struct timezone tz;
-
        getrusage(RUSAGE_SELF, &ru0->ru);
-       gettimeofday(&ru0->tv, &tz);
+       gettimeofday(&ru0->tv, NULL);
 }
 
 /*