public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc/azanella/y2038] y2038: Add __USE_TIME_BITS64 support for struct timeval
@ 2021-06-08 20:48 Adhemerval Zanella
  0 siblings, 0 replies; 10+ messages in thread
From: Adhemerval Zanella @ 2021-06-08 20:48 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=101f405fd819020281a4e8195f5937df443b6047

commit 101f405fd819020281a4e8195f5937df443b6047
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Feb 17 16:19:23 2021 -0300

    y2038: Add __USE_TIME_BITS64 support for struct timeval
    
    The __USE_TIME_BITS64 is not defined internally yet.
    
    Reviewed-by: Lukasz Majewski <lukma@denx.de>
    Reviewed-by: Carlos O'Donell <carlos@redhat.com>
    Tested-by: Carlos O'Donell <carlos@redhat.com>

Diff:
---
 time/bits/types/struct_timeval.h | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/time/bits/types/struct_timeval.h b/time/bits/types/struct_timeval.h
index 70394ce886..3466137c35 100644
--- a/time/bits/types/struct_timeval.h
+++ b/time/bits/types/struct_timeval.h
@@ -7,7 +7,12 @@
    microsecond but also has a range of years.  */
 struct timeval
 {
+#ifdef __USE_TIME_BITS64
+  __time64_t tv_sec;		/* Seconds.  */
+  __suseconds64_t tv_usec;	/* Microseconds.  */
+#else
   __time_t tv_sec;		/* Seconds.  */
   __suseconds_t tv_usec;	/* Microseconds.  */
+#endif
 };
 #endif


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [glibc/azanella/y2038] y2038: Add __USE_TIME_BITS64 support for struct timeval
@ 2021-05-26 16:24 Adhemerval Zanella
  0 siblings, 0 replies; 10+ messages in thread
From: Adhemerval Zanella @ 2021-05-26 16:24 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=c6c9c77821baf3d536648953754d2c86981ae825

commit c6c9c77821baf3d536648953754d2c86981ae825
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Feb 17 16:19:23 2021 -0300

    y2038: Add __USE_TIME_BITS64 support for struct timeval
    
    The __USE_TIME_BITS64 is not defined internally yet.

Diff:
---
 time/bits/types/struct_timeval.h | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/time/bits/types/struct_timeval.h b/time/bits/types/struct_timeval.h
index 70394ce886..3466137c35 100644
--- a/time/bits/types/struct_timeval.h
+++ b/time/bits/types/struct_timeval.h
@@ -7,7 +7,12 @@
    microsecond but also has a range of years.  */
 struct timeval
 {
+#ifdef __USE_TIME_BITS64
+  __time64_t tv_sec;		/* Seconds.  */
+  __suseconds64_t tv_usec;	/* Microseconds.  */
+#else
   __time_t tv_sec;		/* Seconds.  */
   __suseconds_t tv_usec;	/* Microseconds.  */
+#endif
 };
 #endif


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [glibc/azanella/y2038] y2038: Add __USE_TIME_BITS64 support for struct timeval
@ 2021-03-05 19:20 Adhemerval Zanella
  0 siblings, 0 replies; 10+ messages in thread
From: Adhemerval Zanella @ 2021-03-05 19:20 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=9d3201bd5a10ab59bbb3b80c7bc0cd32ab081b06

commit 9d3201bd5a10ab59bbb3b80c7bc0cd32ab081b06
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Feb 17 16:19:23 2021 -0300

    y2038: Add __USE_TIME_BITS64 support for struct timeval
    
    The __USE_TIME_BITS64 is not defined internally yet.

Diff:
---
 time/bits/types/struct_timeval.h | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/time/bits/types/struct_timeval.h b/time/bits/types/struct_timeval.h
index 70394ce886..3466137c35 100644
--- a/time/bits/types/struct_timeval.h
+++ b/time/bits/types/struct_timeval.h
@@ -7,7 +7,12 @@
    microsecond but also has a range of years.  */
 struct timeval
 {
+#ifdef __USE_TIME_BITS64
+  __time64_t tv_sec;		/* Seconds.  */
+  __suseconds64_t tv_usec;	/* Microseconds.  */
+#else
   __time_t tv_sec;		/* Seconds.  */
   __suseconds_t tv_usec;	/* Microseconds.  */
+#endif
 };
 #endif


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [glibc/azanella/y2038] y2038: Add __USE_TIME_BITS64 support for struct timeval
@ 2021-03-04 17:38 Adhemerval Zanella
  0 siblings, 0 replies; 10+ messages in thread
From: Adhemerval Zanella @ 2021-03-04 17:38 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=6587eebe2ef65b5297d0bbe6280e01ac00bfb602

commit 6587eebe2ef65b5297d0bbe6280e01ac00bfb602
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Feb 17 16:19:23 2021 -0300

    y2038: Add __USE_TIME_BITS64 support for struct timeval
    
    The __USE_TIME_BITS64 is not defined internally yet.

Diff:
---
 time/bits/types/struct_timeval.h | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/time/bits/types/struct_timeval.h b/time/bits/types/struct_timeval.h
index 70394ce886..3466137c35 100644
--- a/time/bits/types/struct_timeval.h
+++ b/time/bits/types/struct_timeval.h
@@ -7,7 +7,12 @@
    microsecond but also has a range of years.  */
 struct timeval
 {
+#ifdef __USE_TIME_BITS64
+  __time64_t tv_sec;		/* Seconds.  */
+  __suseconds64_t tv_usec;	/* Microseconds.  */
+#else
   __time_t tv_sec;		/* Seconds.  */
   __suseconds_t tv_usec;	/* Microseconds.  */
+#endif
 };
 #endif


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [glibc/azanella/y2038] y2038: Add __USE_TIME_BITS64 support for struct timeval
@ 2021-03-04 11:31 Adhemerval Zanella
  0 siblings, 0 replies; 10+ messages in thread
From: Adhemerval Zanella @ 2021-03-04 11:31 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=6587eebe2ef65b5297d0bbe6280e01ac00bfb602

commit 6587eebe2ef65b5297d0bbe6280e01ac00bfb602
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Feb 17 16:19:23 2021 -0300

    y2038: Add __USE_TIME_BITS64 support for struct timeval
    
    The __USE_TIME_BITS64 is not defined internally yet.

Diff:
---
 time/bits/types/struct_timeval.h | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/time/bits/types/struct_timeval.h b/time/bits/types/struct_timeval.h
index 70394ce886..3466137c35 100644
--- a/time/bits/types/struct_timeval.h
+++ b/time/bits/types/struct_timeval.h
@@ -7,7 +7,12 @@
    microsecond but also has a range of years.  */
 struct timeval
 {
+#ifdef __USE_TIME_BITS64
+  __time64_t tv_sec;		/* Seconds.  */
+  __suseconds64_t tv_usec;	/* Microseconds.  */
+#else
   __time_t tv_sec;		/* Seconds.  */
   __suseconds_t tv_usec;	/* Microseconds.  */
+#endif
 };
 #endif


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [glibc/azanella/y2038] y2038: Add __USE_TIME_BITS64 support for struct timeval
@ 2021-03-02 12:33 Adhemerval Zanella
  0 siblings, 0 replies; 10+ messages in thread
From: Adhemerval Zanella @ 2021-03-02 12:33 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=83c9eb6185aaaffba29655a8c22bb3ccd5e21f49

commit 83c9eb6185aaaffba29655a8c22bb3ccd5e21f49
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Feb 17 16:19:23 2021 -0300

    y2038: Add __USE_TIME_BITS64 support for struct timeval
    
    The __USE_TIME_BITS64 is not defined internally yet.

Diff:
---
 time/bits/types/struct_timeval.h | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/time/bits/types/struct_timeval.h b/time/bits/types/struct_timeval.h
index 70394ce886..3466137c35 100644
--- a/time/bits/types/struct_timeval.h
+++ b/time/bits/types/struct_timeval.h
@@ -7,7 +7,12 @@
    microsecond but also has a range of years.  */
 struct timeval
 {
+#ifdef __USE_TIME_BITS64
+  __time64_t tv_sec;		/* Seconds.  */
+  __suseconds64_t tv_usec;	/* Microseconds.  */
+#else
   __time_t tv_sec;		/* Seconds.  */
   __suseconds_t tv_usec;	/* Microseconds.  */
+#endif
 };
 #endif


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [glibc/azanella/y2038] y2038: Add __USE_TIME_BITS64 support for struct timeval
@ 2021-03-01 17:37 Adhemerval Zanella
  0 siblings, 0 replies; 10+ messages in thread
From: Adhemerval Zanella @ 2021-03-01 17:37 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=cee329fc01161376263a5f65ba36b74cc3a67c05

commit cee329fc01161376263a5f65ba36b74cc3a67c05
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Feb 17 16:19:23 2021 -0300

    y2038: Add __USE_TIME_BITS64 support for struct timeval
    
    The __USE_TIME_BITS64 is not defined internally yet.

Diff:
---
 time/bits/types/struct_timeval.h | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/time/bits/types/struct_timeval.h b/time/bits/types/struct_timeval.h
index 70394ce886..3466137c35 100644
--- a/time/bits/types/struct_timeval.h
+++ b/time/bits/types/struct_timeval.h
@@ -7,7 +7,12 @@
    microsecond but also has a range of years.  */
 struct timeval
 {
+#ifdef __USE_TIME_BITS64
+  __time64_t tv_sec;		/* Seconds.  */
+  __suseconds64_t tv_usec;	/* Microseconds.  */
+#else
   __time_t tv_sec;		/* Seconds.  */
   __suseconds_t tv_usec;	/* Microseconds.  */
+#endif
 };
 #endif


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [glibc/azanella/y2038] y2038: Add __USE_TIME_BITS64 support for struct timeval
@ 2021-02-26 20:42 Adhemerval Zanella
  0 siblings, 0 replies; 10+ messages in thread
From: Adhemerval Zanella @ 2021-02-26 20:42 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=fa36ae2baebd379d4c504e82264a334399d8ec24

commit fa36ae2baebd379d4c504e82264a334399d8ec24
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Feb 17 16:19:23 2021 -0300

    y2038: Add __USE_TIME_BITS64 support for struct timeval
    
    The __USE_TIME_BITS64 is not defined internally yet.

Diff:
---
 time/bits/types/struct_timeval.h | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/time/bits/types/struct_timeval.h b/time/bits/types/struct_timeval.h
index 70394ce886..3466137c35 100644
--- a/time/bits/types/struct_timeval.h
+++ b/time/bits/types/struct_timeval.h
@@ -7,7 +7,12 @@
    microsecond but also has a range of years.  */
 struct timeval
 {
+#ifdef __USE_TIME_BITS64
+  __time64_t tv_sec;		/* Seconds.  */
+  __suseconds64_t tv_usec;	/* Microseconds.  */
+#else
   __time_t tv_sec;		/* Seconds.  */
   __suseconds_t tv_usec;	/* Microseconds.  */
+#endif
 };
 #endif


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [glibc/azanella/y2038] y2038: Add __USE_TIME_BITS64 support for struct timeval
@ 2021-02-23 20:40 Adhemerval Zanella
  0 siblings, 0 replies; 10+ messages in thread
From: Adhemerval Zanella @ 2021-02-23 20:40 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ea8d1af548b9abc7d22db87d99b74e752abb42fa

commit ea8d1af548b9abc7d22db87d99b74e752abb42fa
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Feb 17 16:19:23 2021 -0300

    y2038: Add __USE_TIME_BITS64 support for struct timeval
    
    The __USE_TIME_BITS64 is not defined internally yet.

Diff:
---
 time/bits/types/struct_timeval.h | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/time/bits/types/struct_timeval.h b/time/bits/types/struct_timeval.h
index 70394ce886..3466137c35 100644
--- a/time/bits/types/struct_timeval.h
+++ b/time/bits/types/struct_timeval.h
@@ -7,7 +7,12 @@
    microsecond but also has a range of years.  */
 struct timeval
 {
+#ifdef __USE_TIME_BITS64
+  __time64_t tv_sec;		/* Seconds.  */
+  __suseconds64_t tv_usec;	/* Microseconds.  */
+#else
   __time_t tv_sec;		/* Seconds.  */
   __suseconds_t tv_usec;	/* Microseconds.  */
+#endif
 };
 #endif


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [glibc/azanella/y2038] y2038: Add __USE_TIME_BITS64 support for struct timeval
@ 2021-02-23 12:38 Adhemerval Zanella
  0 siblings, 0 replies; 10+ messages in thread
From: Adhemerval Zanella @ 2021-02-23 12:38 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=3a223d66ead1903e8986e859f16bbb3f003533f8

commit 3a223d66ead1903e8986e859f16bbb3f003533f8
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Feb 17 16:19:23 2021 -0300

    y2038: Add __USE_TIME_BITS64 support for struct timeval
    
    The __USE_TIME_BITS64 is not defined internally yet.

Diff:
---
 time/bits/types/struct_timeval.h | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/time/bits/types/struct_timeval.h b/time/bits/types/struct_timeval.h
index 70394ce886..3466137c35 100644
--- a/time/bits/types/struct_timeval.h
+++ b/time/bits/types/struct_timeval.h
@@ -7,7 +7,12 @@
    microsecond but also has a range of years.  */
 struct timeval
 {
+#ifdef __USE_TIME_BITS64
+  __time64_t tv_sec;		/* Seconds.  */
+  __suseconds64_t tv_usec;	/* Microseconds.  */
+#else
   __time_t tv_sec;		/* Seconds.  */
   __suseconds_t tv_usec;	/* Microseconds.  */
+#endif
 };
 #endif


^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2021-06-08 20:48 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-08 20:48 [glibc/azanella/y2038] y2038: Add __USE_TIME_BITS64 support for struct timeval Adhemerval Zanella
  -- strict thread matches above, loose matches on Subject: below --
2021-05-26 16:24 Adhemerval Zanella
2021-03-05 19:20 Adhemerval Zanella
2021-03-04 17:38 Adhemerval Zanella
2021-03-04 11:31 Adhemerval Zanella
2021-03-02 12:33 Adhemerval Zanella
2021-03-01 17:37 Adhemerval Zanella
2021-02-26 20:42 Adhemerval Zanella
2021-02-23 20:40 Adhemerval Zanella
2021-02-23 12:38 Adhemerval Zanella

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).