1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 12:15:32 +03:00
aports/community/chromium/default-pthread-stacksize.patch
Natanael Copa bc99b8bf39 community/chromium: upgrade to 53.0.2785.92
increase thread stack size to 4MB since we had some pages that crashed.
2016-09-05 09:58:10 +00:00

6 lines
312 B
Diff

--- a/base/threading/platform_thread_linux.cc.orig 2016-08-30 21:36:06.809571185 +0200
+++ 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);