forked from Imagelibrary/rtems
2007-03-26 Joel Sherrill <joel@OARcorp.com>
* libcsupport/src/__gettod.c: Replace incorrect comment about timezone support and remove deadcode. Replace with comment explaining that behavior is compatible with GNU/Linux per Eric Norum.
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2007-03-26 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* libcsupport/src/__gettod.c: Replace incorrect comment about timezone
|
||||
support and remove deadcode. Replace with comment explaining that
|
||||
behavior is compatible with GNU/Linux per Eric Norum.
|
||||
|
||||
2007-03-26 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||
|
||||
* libnetworking/net/ppp_defs.h, libnetworking/net/if_ppp.h:
|
||||
|
||||
@@ -73,18 +73,11 @@ int gettimeofday(
|
||||
tp->tv_usec = microseconds * _TOD_Microseconds_per_tick;
|
||||
|
||||
/*
|
||||
* newlib does not have timezone and daylight savings time
|
||||
* yet. When it does this needs to be fixed.
|
||||
* Timezone information ignored by the OS proper. Per email
|
||||
* with Eric Norum, this is how GNU/Linux, Solaris, and MacOS X
|
||||
* do it. This puts us in good company.
|
||||
*/
|
||||
|
||||
#if 0
|
||||
if ( tzp ) {
|
||||
tzp->tz_minuteswest = 0; /* at UTC */
|
||||
tzp->tz_dsttime = 0; /* no daylight savings */
|
||||
tzp->minuteswest = timezone / 60; /* from seconds to minutes */
|
||||
tzp->dsttime = daylight;
|
||||
}
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user