summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Cowgill <james410@cowgill.org.uk>2015-10-19 21:59:53 +0200
committerJames Cowgill <james410@cowgill.org.uk>2015-10-19 21:59:53 +0200
commitf9d51a14acc9bf584b92c4917fcf7330fa078105 (patch)
treedf82b3945f869176be8e516c2273685c1d94d51c
parent0fc170a37dcc5869f782090a160f2d2da8a6cc18 (diff)
downloadnspr-hg-f9d51a14acc9bf584b92c4917fcf7330fa078105.tar.gz
Bug 1129968, fix mips assertion fail when creating thread with custom stack size, r=wtcNSPR_4_11_BETA1
-rw-r--r--pr/include/md/_linux.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pr/include/md/_linux.h b/pr/include/md/_linux.h
index c29ba5ce..d378db56 100644
--- a/pr/include/md/_linux.h
+++ b/pr/include/md/_linux.h
@@ -67,7 +67,7 @@
#define _MD_DEFAULT_STACK_SIZE 65536L
#define _MD_MMAP_FLAGS MAP_PRIVATE
-#if defined(__aarch64__)
+#if defined(__aarch64__) || defined(__mips__)
#define _MD_MINIMUM_STACK_SIZE 0x20000
#endif