Re: psql patch

From: Peter Eisentraut <peter_e(at)gmx(dot)net>
To: "Jeroen T(dot) Vermeulen" <jtv(at)xs4all(dot)nl>
Cc: pgsql-patches(at)postgresql(dot)org
Subject: Re: psql patch
Date: 2003-03-21 17:00:22
Message-ID: Pine.LNX.4.44.0303211121230.2387-100000@peter.localdomain
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches

Configure already has provisions for the single-argument gettimeofday
form. Please use that and remove the code below.

Jeroen T. Vermeulen writes:

+
+ /* Workarounds for Windows */
+ /* Probably to be moved up the source tree in the future, perhaps to be
replaced by
+ * more specific checks like configure-style HAVE_GETTIMEOFDAY macros.
+ */
+ #ifndef WIN32
+
+ typedef struct timeval TimevalStruct;
+ #define GETTIMEOFDAY(T) gettimeofday(T, NULL)
+ #define DIFF_MSEC(T, U) ((((T)->tv_sec - (U)->tv_sec) * 1000000.0 +
(T)->tv_usec -
(U)->tv_usec) / 1000.0)
+
+ #else
+
+ typedef struct _timeb TimevalStruct;
+ #define GETTIMEOFDAY(T) _ftime(&T)
+ #define DIFF_MSEC(T, U) ((((T)->time - (U)->time) * 1000.0 +
(T)->millitm -
(U)->millitm))
+
+ #endif
+
+

--
Peter Eisentraut peter_e(at)gmx(dot)net

In response to

  • psql patch at 2003-02-13 13:49:34 from Jeroen T. Vermeulen

Responses

Browse pgsql-patches by date

  From Date Subject
Next Message Peter Eisentraut 2003-03-21 17:22:21 Re: Forgotten?
Previous Message Alvaro Herrera 2003-03-21 15:42:11 Re: Add CLUSTER ON to pg_dumps