Fixed typo that set thread STACK_SIZE to 24k instead of 8k

__linux__ was mispelled as _linux_ so #ifdef was always
selecting the Solaris STACK_SIZE value.

Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
This commit is contained in:
Ned Bass 2010-07-21 09:58:54 -07:00 committed by Brian Behlendorf
parent 213d6423b5
commit 75d868af70
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ _NOTE(CONSTCOND) } while (0)
*/ */
#define TS_MAGIC 0x72f158ab4261e538ull #define TS_MAGIC 0x72f158ab4261e538ull
#define TS_RUN 0x00000002 #define TS_RUN 0x00000002
#ifdef _linux_ #ifdef __linux__
#define STACK_SIZE 8192 /* Linux x86 and amd64 */ #define STACK_SIZE 8192 /* Linux x86 and amd64 */
#else #else
#define STACK_SIZE 24576 /* Solaris */ #define STACK_SIZE 24576 /* Solaris */