summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorJoe Mistachkin <joe@mistachkin.com>2006-08-29 05:33:35 (GMT)
committerJoe Mistachkin <joe@mistachkin.com>2006-08-29 05:33:35 (GMT)
commit3faa694500b76066d4dcc0917f145042350d7910 (patch)
treebf318afb1cf6557594658ad2b9d57fa03d8ba8ca /unix
parent4ddcec561c505418f8a373d83ac40a7c31782b15 (diff)
downloadtcl-3faa694500b76066d4dcc0917f145042350d7910.zip
tcl-3faa694500b76066d4dcc0917f145042350d7910.tar.gz
tcl-3faa694500b76066d4dcc0917f145042350d7910.tar.bz2
Fix for stack.test failures on FreeBSD
Diffstat (limited to 'unix')
-rw-r--r--unix/tclUnixInit.c16
-rw-r--r--unix/tclUnixThrd.c2
2 files changed, 5 insertions, 13 deletions
diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c
index 4287927..6fe79d9 100644
--- a/unix/tclUnixInit.c
+++ b/unix/tclUnixInit.c
@@ -7,7 +7,7 @@
* Copyright (c) 1999 by Scriptics Corporation.
* All rights reserved.
*
- * RCS: @(#) $Id: tclUnixInit.c,v 1.65 2006/08/18 07:45:32 das Exp $
+ * RCS: @(#) $Id: tclUnixInit.c,v 1.66 2006/08/29 05:33:36 mistachkin Exp $
*/
#include "tclInt.h"
@@ -54,23 +54,15 @@
* Values used to compute how much space is really available for Tcl's use for
* the stack.
*
- * NOTE: Now I have some idea why the maximum stack size must be divided by 64
- * on FreeBSD with threads enabled to get a reasonably correct value.
- *
* The getrlimit() function is documented to return the maximum stack size in
- * bytes. However, with threads enabled, the pthread library does bad things
- * to the stack size limits. First, the limits cannot be changed. Second, they
- * appear to be reported incorrectly by a factor of about 64.
+ * bytes. However, with threads enabled, the pthread library on some platforms
+ * does bad things to the stack size limits. First, the limits cannot be
+ * changed. Second, they appear to be sometimes reported incorrectly.
*
* The defines below may need to be adjusted if more platforms have this
* broken behavior with threads enabled.
*/
-#if defined(__FreeBSD__)
-# define TCL_MAGIC_STACK_DIVISOR 64
-# define TCL_RESERVED_STACK_PAGES 3
-#endif
-
#ifndef TCL_MAGIC_STACK_DIVISOR
#define TCL_MAGIC_STACK_DIVISOR 1
#endif
diff --git a/unix/tclUnixThrd.c b/unix/tclUnixThrd.c
index f8131c0..434cbed 100644
--- a/unix/tclUnixThrd.c
+++ b/unix/tclUnixThrd.c
@@ -215,7 +215,7 @@ TclpThreadExit(
int
TclpThreadGetStackSize(void)
{
-#if defined(HAVE_PTHREAD_SETSTACKSIZE) && defined(TclpPthreadGetAttrs)
+#if defined(HAVE_PTHREAD_ATTR_SETSTACKSIZE) && defined(TclpPthreadGetAttrs)
pthread_attr_t threadAttr; /* This will hold the thread attributes for
* the current thread. */
size_t stackSize;