f9adc4
diff -up firefox-68.1.0/xpcom/threads/nsThread.cpp.old firefox-68.1.0/xpcom/threads/nsThread.cpp
f9adc4
--- firefox-68.1.0/xpcom/threads/nsThread.cpp.old	2019-09-20 12:17:35.481661390 +0200
f9adc4
+++ firefox-68.1.0/xpcom/threads/nsThread.cpp	2019-09-20 12:19:14.269180516 +0200
f9adc4
@@ -556,7 +556,8 @@ void nsThread::InitCommon() {
f9adc4
     // kernel report them as separate regions, even when they are adjacent to
f9adc4
     // heap memory. This allows us to accurately track the actual memory
f9adc4
     // consumption of our allocated stacks.
f9adc4
-    madvise(mStackBase, stackSize, MADV_NOHUGEPAGE);
f9adc4
+    // not supported on RHEL6
f9adc4
+    // madvise(mStackBase, stackSize, MADV_NOHUGEPAGE);
f9adc4
 
f9adc4
     pthread_attr_destroy(&attr);
f9adc4
 #elif defined(XP_WIN)