aboutsummaryrefslogtreecommitdiffstats
path: root/community/chromium/default-pthread-stacksize.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2016-09-08 11:02:57 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2016-09-08 11:03:51 +0200
commit0b0247b3a15173f05e15a7a6d547cfc4742b58f6 (patch)
tree9437220800fa9f82144410eab6b16ffc3209e8e4 /community/chromium/default-pthread-stacksize.patch
parent1fb4e1ed62aab97941b69e0d8798cd24f254a5d8 (diff)
downloadaports-0b0247b3a15173f05e15a7a6d547cfc4742b58f6.tar.bz2
aports-0b0247b3a15173f05e15a7a6d547cfc4742b58f6.tar.xz
community/chromium: gcc6 fix and reduce stacksize
the crashes apparently came from gcc6. so we reduce stack size to 2MB again. This is what android use.
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 a3a0c19d87..8fa2567b32 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 4mb to avoid running out of space
-+ return (4 * 1024 * 1024);
++ // use 2mb to avoid running out of space
++ return (2 * 1024 * 1024);