aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/bdwgc/bdwgc/musl_header_fix.patch
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2018-09-26 23:13:34 +0300
committerKhem Raj <raj.khem@gmail.com>2018-11-26 09:38:13 -0800
commit59577cb5bd7ba4274b311b1c21fdbd80dd125798 (patch)
tree4d168d821f7f36c4f6550068c9828d9b7b3da2fa /meta-oe/recipes-support/bdwgc/bdwgc/musl_header_fix.patch
parent79bb01985260800f80b393e73b387543f86f9e62 (diff)
downloadmeta-openembedded-contrib-59577cb5bd7ba4274b311b1c21fdbd80dd125798.tar.gz
bdwgc: upgrade 7.6.0 -> 7.6.8
Highlights of this upgrade: * Fix numerous bugs (concurrency, overflow, CVE-2016-9427, etc.) * Fix various typos in comments and documentation * AddressSanitizer and MemorySanitizer support * RISC-V support See the following for detailed changes: * https://github.com/ivmai/bdwgc/releases/tag/v7.6.2 * https://github.com/ivmai/bdwgc/releases/tag/v7.6.4 * https://github.com/ivmai/bdwgc/releases/tag/v7.6.6 * https://github.com/ivmai/bdwgc/releases/tag/v7.6.8 Signed-off-by: Ivan Maidanski <ivmai@mail.ru> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/bdwgc/bdwgc/musl_header_fix.patch')
-rw-r--r--meta-oe/recipes-support/bdwgc/bdwgc/musl_header_fix.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/meta-oe/recipes-support/bdwgc/bdwgc/musl_header_fix.patch b/meta-oe/recipes-support/bdwgc/bdwgc/musl_header_fix.patch
deleted file mode 100644
index 4a18496650..0000000000
--- a/meta-oe/recipes-support/bdwgc/bdwgc/musl_header_fix.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-Add missing header to avoid:
-
-| 1472659610.016355: ../git/pthread_stop_world.c: In function 'GC_brief_async_signal_safe_sleep':
-| 1472659610.0540252: ../git/pthread_stop_world.c:397:22: error: storage size of 'tv' isn't known
-| 1472659610.0540252: struct timeval tv;
-| 1472659610.0540252: ^~
-| 1472659610.054099: ../git/pthread_stop_world.c:397:22: warning: unused variable 'tv' [-Wunused-variable]
-| 1472659610.054099: struct timeval tv;
-| 1472659610.054099: ^~
-| 1472659610.054099: Makefile:1530: recipe for target 'pthread_stop_world.lo' failed
-
-in musl builds.
-
-Upstream-Status: Pending
-
-Index: git/pthread_stop_world.c
-===================================================================
---- git.orig/pthread_stop_world.c
-+++ git/pthread_stop_world.c
-@@ -45,6 +45,7 @@
- #include <semaphore.h>
- #include <errno.h>
- #include <unistd.h>
-+#include <sys/time.h>
- #include "atomic_ops.h"
-
- /* It's safe to call original pthread_sigmask() here. */