diff options
author | Samuli Piippo <samuli.piippo@qt.io> | 2019-08-14 15:06:28 +0300 |
---|---|---|
committer | Samuli Piippo <samuli.piippo@qt.io> | 2019-08-15 10:10:47 +0300 |
commit | 63dec9bbd826a4afafa7177aaa3439467f25d80a (patch) | |
tree | afcff4f6d8c72cb4a51f1e27cda2a65aeb55d712 /recipes-qt/qt5/qtwebengine/chromium/0008-chromium-musl-Avoid-mallinfo-APIs-on-non-glibc-linux.patch | |
parent | 79791026ff20539180027de0d796f8acd55bc7bf (diff) | |
parent | 53500ade778bac6e1733db43fc41c290d7b9d16b (diff) | |
download | meta-qt5-63dec9bbd826a4afafa7177aaa3439467f25d80a.tar.gz |
Merge remote-tracking branch 'origin/upstream/master' into 5.13
* origin/upstream/master:
qtdeclarative: Use qmlcachegen provided by OE instead of system one.
qtbase-native: Always use qt provided doubleconversion library.
qttools: Enable clang support when using clang
qt5-creator: update to v4.9.2
maliit-framework-qt5: Fix build when ptest is enabled
qtwebengine: Fix build on aarch64
qtwebengine: refresh the patches to apply
qtremoteobjects: Use OE_PATH_EXTERNAL_HOST_BINS to enable cmake to find repc
qt5: Upgrade to Qt 5.13.0
Allow enabling gui for native and nativesdk
qt5everywheredemo: update HOMEPAGE
qtconnectivity,qtsystems: Account for bluez4 from oe-core
gdb_%.bbappend: Avoid PAK archive (application/x-pak)
Change-Id: I24e0b7b95920df3722f84a1f3a2e74546dc74810
Diffstat (limited to 'recipes-qt/qt5/qtwebengine/chromium/0008-chromium-musl-Avoid-mallinfo-APIs-on-non-glibc-linux.patch')
-rw-r--r-- | recipes-qt/qt5/qtwebengine/chromium/0008-chromium-musl-Avoid-mallinfo-APIs-on-non-glibc-linux.patch | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/recipes-qt/qt5/qtwebengine/chromium/0008-chromium-musl-Avoid-mallinfo-APIs-on-non-glibc-linux.patch b/recipes-qt/qt5/qtwebengine/chromium/0008-chromium-musl-Avoid-mallinfo-APIs-on-non-glibc-linux.patch new file mode 100644 index 00000000..14b469e1 --- /dev/null +++ b/recipes-qt/qt5/qtwebengine/chromium/0008-chromium-musl-Avoid-mallinfo-APIs-on-non-glibc-linux.patch | |||
@@ -0,0 +1,52 @@ | |||
1 | From 6eec3f3105b0f6b37fdb52efbb4b3820e1d25846 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Fri, 7 Jul 2017 14:09:06 -0700 | ||
4 | Subject: [PATCH] chromium: musl: Avoid mallinfo() APIs on non-glibc/linux | ||
5 | |||
6 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
7 | --- | ||
8 | chromium/base/process/process_metrics_posix.cc | 4 ++-- | ||
9 | chromium/base/trace_event/malloc_dump_provider.cc | 2 ++ | ||
10 | 2 files changed, 4 insertions(+), 2 deletions(-) | ||
11 | |||
12 | diff --git a/chromium/base/process/process_metrics_posix.cc b/chromium/base/process/process_metrics_posix.cc | ||
13 | index a09bbf2c56e..b309f6b694e 100644 | ||
14 | --- a/chromium/base/process/process_metrics_posix.cc | ||
15 | +++ b/chromium/base/process/process_metrics_posix.cc | ||
16 | @@ -100,14 +100,14 @@ size_t ProcessMetrics::GetMallocUsage() { | ||
17 | malloc_statistics_t stats = {0}; | ||
18 | malloc_zone_statistics(nullptr, &stats); | ||
19 | return stats.size_in_use; | ||
20 | -#elif defined(OS_LINUX) || defined(OS_ANDROID) | ||
21 | +#elif defined(__GLIBC__) || defined(OS_ANDROID) | ||
22 | struct mallinfo minfo = mallinfo(); | ||
23 | #if defined(USE_TCMALLOC) | ||
24 | return minfo.uordblks; | ||
25 | #else | ||
26 | return minfo.hblkhd + minfo.arena; | ||
27 | #endif | ||
28 | -#elif defined(OS_FUCHSIA) | ||
29 | +#else | ||
30 | // TODO(fuchsia): Not currently exposed. https://crbug.com/735087. | ||
31 | return 0; | ||
32 | #endif | ||
33 | diff --git a/chromium/base/trace_event/malloc_dump_provider.cc b/chromium/base/trace_event/malloc_dump_provider.cc | ||
34 | index 0077d8b0aec..c69f893f4e9 100644 | ||
35 | --- a/chromium/base/trace_event/malloc_dump_provider.cc | ||
36 | +++ b/chromium/base/trace_event/malloc_dump_provider.cc | ||
37 | @@ -77,6 +77,7 @@ MallocDumpProvider::~MallocDumpProvider() = default; | ||
38 | // the current process. | ||
39 | bool MallocDumpProvider::OnMemoryDump(const MemoryDumpArgs& args, | ||
40 | ProcessMemoryDump* pmd) { | ||
41 | +#if defined(__GLIBC__) | ||
42 | { | ||
43 | base::AutoLock auto_lock(emit_metrics_on_memory_dump_lock_); | ||
44 | if (!emit_metrics_on_memory_dump_) | ||
45 | @@ -172,6 +173,7 @@ bool MallocDumpProvider::OnMemoryDump(const MemoryDumpArgs& args, | ||
46 | MemoryAllocatorDump::kUnitsBytes, | ||
47 | resident_size - allocated_objects_size); | ||
48 | } | ||
49 | +#endif // __GLIBC__ | ||
50 | return true; | ||
51 | } | ||
52 | |||