[BZ #6843]
authorUlrich Drepper <drepper@redhat.com>
Sat, 1 Nov 2008 00:20:07 +0000 (00:20 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 1 Nov 2008 00:20:07 +0000 (00:20 +0000)
2008-10-31  Ulrich Drepper  <drepper@redhat.com>
[BZ #6843]
* sysdeps/pthread/gai_misc.h (__gai_create_helper_thread):
Increase stack size for helper thread.

NEWS
nptl/ChangeLog
nptl/sysdeps/pthread/gai_misc.h

diff --git a/NEWS b/NEWS
index b17f053..08c9e21 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-GNU C Library NEWS -- history of user-visible changes.  2008-9-29
+GNU C Library NEWS -- history of user-visible changes.  2008-10-31
 Copyright (C) 1992-2007, 2008 Free Software Foundation, Inc.
 See the end for copying conditions.
 
@@ -36,7 +36,8 @@ Version 2.9
 * Many functions, exported and internal, now atomically set the close-on-exec
   flag when run on a sufficiently new kernel.  Implemented by Ulrich Drepper.
 
-* Sorting rules for some Indian languages (Kannada, Gurumukhi, Telugu)
+* Sorting rules for some Indian languages (Kannada, Gurumukhi, Telugu,
+  Sinhala)
   Implemented by Pravin Satpute.
 
 * New locales: sd_IN, sd_IN@devanagari, ks_IN@devanagari, ht_HT, en_AG, nl_AW.
index 733ff03..df01334 100644 (file)
@@ -1,3 +1,9 @@
+2008-10-31  Ulrich Drepper  <drepper@redhat.com>
+
+       [BZ #6843]
+       * sysdeps/pthread/gai_misc.h (__gai_create_helper_thread):
+       Increase stack size for helper thread.
+
 2008-10-06  Martin Schwidefsky  <schwidefsky@de.ibm.com>
 
        * sysdeps/s390/tls.h (THREAD_SET_STACK_GUARD): Add empty inline
index 0a2686c..9094c1e 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2006, 2007 Free Software Foundation, Inc.
+/* Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -97,7 +97,7 @@ __gai_create_helper_thread (pthread_t *threadp, void *(*tf) (void *),
   pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED);
 
   /* The helper thread needs only very little resources.  */
-  (void) pthread_attr_setstacksize (&attr, PTHREAD_STACK_MIN);
+  (void) pthread_attr_setstacksize (&attr, 4 * PTHREAD_STACK_MIN);
 
   /* Block all signals in the helper thread.  To do this thoroughly we
      temporarily have to block all signals here.  */