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