aboutsummaryrefslogtreecommitdiffstats
path: root/community/chromium/default-pthread-stacksize.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2016-09-05 09:57:16 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2016-09-05 09:58:10 +0000
commitbc99b8bf390ccc6106ee491d88923021dcbb1526 (patch)
treede8fed517bc744f46a21147dab29429d87eb1839 /community/chromium/default-pthread-stacksize.patch
parentb16ce7ece839c7330718418a452d80f8d1c8a0f5 (diff)
downloadaports-bc99b8bf390ccc6106ee491d88923021dcbb1526.tar.bz2
aports-bc99b8bf390ccc6106ee491d88923021dcbb1526.tar.xz
community/chromium: upgrade to 53.0.2785.92
increase thread stack size to 4MB since we had some pages that crashed.
Diffstat (limited to 'community/chromium/default-pthread-stacksize.patch')
-rw-r--r--community/chromium/default-pthread-stacksize.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/community/chromium/default-pthread-stacksize.patch b/community/chromium/default-pthread-stacksize.patch
index 30d56dee6b..a3a0c19d87 100644
--- a/community/chromium/default-pthread-stacksize.patch
+++ b/community/chromium/default-pthread-stacksize.patch
@@ -2,5 +2,5 @@
+++ b/base/threading/platform_thread_linux.cc 2016-08-30 21:36:14.582805286 +0200
@@ -99 +99,2 @@ size_t GetDefaultThreadStackSize(const p
- return 0;
-+ // use 2mb like android to avoid running out of space
-+ return (2 * 1024 * 1024);
++ // use 4mb to avoid running out of space
++ return (4 * 1024 * 1024);