Re: [HACKERS] Date/time on glibc2 linux

From: Oleg Broytmann <phd(at)sun(dot)med(dot)ru>
To: "Thomas G(dot) Lockhart" <lockhart(at)alumni(dot)caltech(dot)edu>
Cc: pgsql-hackers(at)postgreSQL(dot)org
Subject: Re: [HACKERS] Date/time on glibc2 linux
Date: 1998-12-10 08:35:49
Message-ID: Pine.SOL2.3.96.SK.981210112715.13414B-100000@sun.med.ru
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hello!

On Thu, 10 Dec 1998, Thomas G. Lockhart wrote:

> > I am sure this is related. When I edited config.h and commented out
> > DATEDEBUG the sources compiled just fine.
>
> So send my your config.h if you want someone to look at it.

I've solved this issue. I uncomment it to
#define DATEDEBUG
but forget to add definition. After writing
#define DATEDEBUG 1
postgres compiled.

> > Any use for daylight or tzname or timezone (global vars) produces
> > incorrect results.
> > It looks like glibc2 defines these vars incorrectly. Correct values
> > are in struct tm (including tmzone and gmtoff).
> > Do you think it is local problem? I am pretty sure it is
> > "system-wide".
>
> The glibc2 is a thread-safe library, and I would expect that the *only*
> place with reliable timezone info is in the tm structure. Global
> variables are not to be trusted since they are not available in a
> reentrant way.

Yes, I understood the idea after you explained this for a first time.

> If the tm structure contains the timezone info (as it claims to on my
> RH5.1 glibc2 system) then for testing try to #undef HAVE_INT_TIMEZONE in
> config.h and see how it goes. If I have a chance tomorrow I'll try doing
> the same at work. I'm guessing that our configure tests look for the
> global variable version first, and that the glibc2 passes that test even
> though the other mechanism is the right one.

#undef HAVE_INT_TIMEZONE in config.h replaced by #define HAVE_INT_TIMEZONE 1
after configure.
On the other hand, os.h (linked to port/linux.h) undefine it. I need to
test that it is still undefined when compiling datetime.c (and dt.c and all
that) - there are all provisions to use tm.tz_name/tm_gmtoff, compiler just
need right defines.

Oleg.
----
Oleg Broytmann National Research Surgery Centre http://sun.med.ru/~phd/
Programmers don't die, they just GOSUB without RETURN.

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Oleg Broytmann 1998-12-10 08:57:21 Re: [HACKERS] Date/time on glibc2 linux
Previous Message dustin sallings 1998-12-10 08:21:57 Re: [GENERAL] TODO list elements