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