Re: gettimeofday cause crash on Windows - Mailing list pgsql-bugs

From Alvaro Herrera
Subject Re: gettimeofday cause crash on Windows
Date
Msg-id 20150212151403.GJ3391@alvh.no-ip.org
Whole thread Raw
In response to Re: gettimeofday cause crash on Windows  (Asif Naeem <anaeem.it@gmail.com>)
Responses Re: gettimeofday cause crash on Windows  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: gettimeofday cause crash on Windows  (Andres Freund <andres@2ndquadrant.com>)
List pgsql-bugs
Asif Naeem wrote:
> Don’t you feel gettimeofday() implementation is incomplete in current
> state, Is there any other example of function port in PG that could lead to
> crash if its related init_* function is not called earlier ?. As mentioned
> by Michael, it seems not enough documented (release notes etc), at least it
> need to give warning etc instead of simply crash the related process.
> GetSystemTimeAsFileTime() function is less precise but it is quite fast and
> less CPU intensive then GetSystemTimePreciseAsFileTime() function,
> GetSystemTimePreciseAsFileTime() can effect performance of an application.
> With the proposed patch, gettimeofday() function is more safe and more
> versatile, a contrib may use it as per its need of precision. Thanks.

Ideally we would the Precise dance automatically, without requiring the
program to call an initialization function.  Otherwise, programs may
never be updated to use Precise rather than the stock function.  I guess
this is the reason Andres prefers a crash: to force programs to be
updated to include the initialization step.

I wonder if it would work to set the function initially to the
initialization function, so that on the first call the Precise version,
if it exists, is detected (or the stock version otherwise) and set as
the function to call for later -- without requiring a jump in every
subsequent execution of gettimeofday(), of course.  The initialization
function itself would have to return the value returned by
GetSystemTimePreciseAsFileTime, of course.

--
Álvaro Herrera                http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

pgsql-bugs by date:

Previous
From: Asif Naeem
Date:
Subject: Re: gettimeofday cause crash on Windows
Next
From: Tom Lane
Date:
Subject: Re: gettimeofday cause crash on Windows