mirror of
https://github.com/richfelker/musl-cross-make.git
synced 2025-04-21 16:34:58 +02:00

- all patches from gcc 8.3.0 except for 0017-pr93402.diff, which is now already present - see https://web.archive.org/web/20200309214347/https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93402
19 lines
541 B
Diff
19 lines
541 B
Diff
--- gcc-9.2.0/libstdc++-v3/src/c++11/futex.cc.orig 2020-01-20 14:55:05.507548334 -0500
|
|
+++ gcc-9.2.0/libstdc++-v3/src/c++11/futex.cc 2020-01-20 14:56:52.458268068 -0500
|
|
@@ -61,7 +61,15 @@
|
|
struct timeval tv;
|
|
gettimeofday (&tv, NULL);
|
|
// Convert the absolute timeout value to a relative timeout
|
|
+#if defined(SYS_futex_time64)
|
|
+ struct
|
|
+ {
|
|
+ long tv_sec;
|
|
+ long tv_nsec;
|
|
+ } rt;
|
|
+#else
|
|
struct timespec rt;
|
|
+#endif
|
|
rt.tv_sec = __s.count() - tv.tv_sec;
|
|
rt.tv_nsec = __ns.count() - tv.tv_usec * 1000;
|
|
if (rt.tv_nsec < 0)
|