aboutsummaryrefslogtreecommitdiffstats
path: root/community/chromium/no-mallinfo.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2017-08-08 13:34:16 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2017-09-15 13:37:11 +0000
commitd183e852a762296b473c33e9ce106f52a4359dae (patch)
tree2f92f891d7ff1fc4b4aa0551bd7b28218b30b9d3 /community/chromium/no-mallinfo.patch
parent0d4667363c89e53a83538d90acdc612739d061db (diff)
downloadaports-d183e852a762296b473c33e9ce106f52a4359dae.tar.bz2
aports-d183e852a762296b473c33e9ce106f52a4359dae.tar.xz
community/chromium: upgrade to 61.0.3163.79
to fix tab crashes, use patch from https://github.com/lluixhi/musl-extras/issues/10#issuecomment-328272349 use various patches from fedora
Diffstat (limited to 'community/chromium/no-mallinfo.patch')
-rw-r--r--community/chromium/no-mallinfo.patch98
1 files changed, 29 insertions, 69 deletions
diff --git a/community/chromium/no-mallinfo.patch b/community/chromium/no-mallinfo.patch
index 4396e29778..e95e94814e 100644
--- a/community/chromium/no-mallinfo.patch
+++ b/community/chromium/no-mallinfo.patch
@@ -1,14 +1,3 @@
---- base/trace_event/malloc_dump_provider.cc.orig
-+++ base/trace_event/malloc_dump_provider.cc
-@@ -187,7 +187,7 @@
- resident_size = main_heap_info.committed_size;
- allocated_objects_size = main_heap_info.allocated_size;
- allocated_objects_count = main_heap_info.block_count;
--#else
-+#elif defined(OS_LINUX) && defined(__GLIBC__)
- struct mallinfo info = mallinfo();
- DCHECK_GE(info.arena + info.hblkhd, info.uordblks);
-
--- content/child/content_child_helpers.cc.orig
+++ content/child/content_child_helpers.cc
@@ -24,7 +24,7 @@ namespace content {
@@ -20,64 +9,35 @@
size_t GetMemoryUsageKB() {
struct mallinfo minfo = mallinfo();
uint64_t mem_usage =
---- content/renderer/render_thread_impl.cc.orig
-+++ content/renderer/render_thread_impl.cc
-@@ -1699,6 +1699,49 @@
- }
-
- } // namespace
-+#elif defined(OS_LINUX) && !defined(__GLIBC__)
-+namespace {
-+
-+static size_t GetMallocUsage() {
-+ char *line=NULL;
-+ size_t n,usage=0;
-+ FILE *f = fopen("/proc/self/maps", "r");
-+ char *path, *perm;
-+ if (f == NULL) {
-+ perror("/proc/self/maps");
-+ return 0;
-+ }
-+ path = (char *)malloc(PATH_MAX+16);
-+ if (path == NULL)
-+ goto out;
-+ perm = path + PATH_MAX;
-+
-+ while (getline(&line, &n, f) >=0) {
-+ size_t start,end,offset,inode;
-+ int devmaj, devmin, items;
-+
-+ items = sscanf(line, "%zx-%zx %s %zx %x:%x %zu %s",
-+ &start, &end, perm, &offset,
-+ &devmaj, &devmin, &inode, path);
-+
-+ if (items < 7)
-+ continue;
-+
-+ if (items < 8)
-+ path[0] = '\0';
-+
-+ if ((strcmp(perm, "rw-p") == 0 && devmaj+devmin == 0)
-+ && (path[0] == '\0' || strcmp(path, "[heap]") == 0))
-+ usage += end-start;
-+ }
-+ free(line);
-+ free(path);
-+out:
-+ fclose(f);
-+ return usage;
-+}
-+
-+} // namespace
- #endif
+--- base/trace_event/malloc_dump_provider.cc.orig
++++ base/trace_event/malloc_dump_provider.cc
+@@ -243,7 +243,7 @@
+ allocated_objects_count = main_heap_info.block_count;
+ #elif defined(OS_FUCHSIA)
+ // TODO(fuchsia): Port, see https://crbug.com/706592.
+-#else
++#elif defined(__GLIBC__)
+ struct mallinfo info = mallinfo();
+ DCHECK_GE(info.arena + info.hblkhd, info.uordblks);
- bool RenderThreadImpl::GetRendererMemoryMetrics(
-@@ -1719,7 +1762,7 @@
- blink_stats.partition_alloc_total_allocated_bytes / 1024;
- memory_metrics->blink_gc_kb =
- blink_stats.blink_gc_total_allocated_bytes / 1024;
--#if defined(OS_LINUX) || defined(OS_ANDROID)
-+#if defined(OS_LINUX) && defined(__GLIBC__) || defined(OS_ANDROID)
+diff --git a/base/process/process_metrics_posix.cc b/base/process/process_metrics_posix.cc
+index 0eb5c1f..8af7799 100644
+--- base/process/process_metrics_posix.cc
++++ base/process/process_metrics_posix.cc
+@@ -94,14 +94,14 @@ size_t ProcessMetrics::GetMallocUsage() {
+ malloc_statistics_t stats = {0};
+ malloc_zone_statistics(nullptr, &stats);
+ return stats.size_in_use;
+-#elif defined(OS_LINUX) || defined(OS_ANDROID)
++#elif defined(__GLIBC__) || defined(OS_ANDROID)
struct mallinfo minfo = mallinfo();
#if defined(USE_TCMALLOC)
- size_t malloc_usage = minfo.uordblks;
+ return minfo.uordblks;
+ #else
+ return minfo.hblkhd + minfo.arena;
+ #endif
+-#elif defined(OS_FUCHSIA)
++#else
+ // TODO(fuchsia): Not currently exposed. https://crbug.com/735087.
+ return 0;
+ #endif