From 395cdccbc30faefa9ec301f313267db90bb9b14a Mon Sep 17 00:00:00 2001 From: "wtc%netscape.com" Date: Thu, 28 Jan 1999 03:20:29 +0000 Subject: [PATCH] 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 --- mozilla/nsprpub/pr/src/pthreads/ptthread.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/mozilla/nsprpub/pr/src/pthreads/ptthread.c b/mozilla/nsprpub/pr/src/pthreads/ptthread.c index bafce7713fb..10f6112ec56 100644 --- a/mozilla/nsprpub/pr/src/pthreads/ptthread.c +++ b/mozilla/nsprpub/pr/src/pthreads/ptthread.c @@ -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.