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