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