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