Bug 256180 mobile part - Increase the max size for the runtime stack of the Gecko main thread on Android. r=snorp.

MozReview-Commit-ID: F85WvVTOP1S
This commit is contained in:
Henri Sivonen 2017-10-04 09:46:05 +03:00
parent 0ce4f36c7a
commit 05fc2b8600

View File

@ -158,7 +158,9 @@ public class GeckoThread extends Thread {
}
GeckoThread() {
setName("Gecko");
// Request more (virtual) stack space to avoid overflows in the CSS frame
// constructor. 8 MB matches desktop.
super(null, null, "Gecko", 8 * 1024 * 1024);
}
@WrapForJNI