diff options
author | Joe Mistachkin <joe@mistachkin.com> | 2006-08-29 05:33:35 (GMT) |
---|---|---|
committer | Joe Mistachkin <joe@mistachkin.com> | 2006-08-29 05:33:35 (GMT) |
commit | 3faa694500b76066d4dcc0917f145042350d7910 (patch) | |
tree | bf318afb1cf6557594658ad2b9d57fa03d8ba8ca /unix/tclUnixThrd.c | |
parent | 4ddcec561c505418f8a373d83ac40a7c31782b15 (diff) | |
download | tcl-3faa694500b76066d4dcc0917f145042350d7910.zip tcl-3faa694500b76066d4dcc0917f145042350d7910.tar.gz tcl-3faa694500b76066d4dcc0917f145042350d7910.tar.bz2 |
Fix for stack.test failures on FreeBSD
Diffstat (limited to 'unix/tclUnixThrd.c')
-rw-r--r-- | unix/tclUnixThrd.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |