Bugsplat bug #340124: increase the default thread stack size to 64K

on IRIX, to be consistent with the other platforms.


git-svn-id: svn://10.0.0.236/trunk@18893 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
wtc%netscape.com
1999-01-28 03:20:29 +00:00
parent d3d84733cc
commit 395cdccbc3

View File

@@ -285,10 +285,6 @@ static PRThread* _PR_CreateThread(
PR_ASSERT(0 == rv);
#endif /* !defined(_PR_DCETHREADS) */
#if defined(IRIX)
if ((32 * 1024) > stackSize) stackSize = (32 * 1024); /* IRIX minimum */
else
#endif
if (0 == stackSize) stackSize = (64 * 1024); /* default == 64K */
/*
* Linux doesn't have pthread_attr_setstacksize.