]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
stdlib: Fixing test-*atexit*-race tests on ia64
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>
Thu, 1 Feb 2018 12:31:57 +0000 (10:31 -0200)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Thu, 1 Feb 2018 13:17:44 +0000 (11:17 -0200)
These tests require a new thread stack size set to a value (0x20000)
lower than the architecture minimum (0x30000).  Set the stack size
to PTHREAD_STACK_MIN in this case.

Checked on ia64-linux-gnu.

* stdlib/test-atexit-race-common.c (do_test): Check stack size
against PTHREAD_STACK_MIN.

ChangeLog
stdlib/test-atexit-race-common.c

index d577abc377ff44d6e4cee5fd82d11aab4d3fcb81..fdf303a42ff7279e66eb6dd9dcce862aa74581d7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2018-02-01  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
+
+       * stdlib/test-atexit-race-common.c (do_test): Check stack size
+       against PTHREAD_STACK_MIN.
+
 2018-02-01  Dmitry V. Levin  <ldv@altlinux.org>
 
        * manual/contrib.texi (Palmer Dabbelt, Arjun Shankar, Florian Weimer):
index 4d7f911d8cb69267714dde4b0ff8e7ba4b8b49c4..8adf1330bf8c88ed484077311307f6ce87cae758 100644 (file)
 #include <stdio.h>
 #include <stdlib.h>
 #include <support/xthread.h>
+#include <limits.h>
 
 const size_t kNumThreads = 1024;
 const size_t kNumHandlers = 1024;
+const size_t kStacksize =
+       0x20000 < PTHREAD_STACK_MIN ? PTHREAD_STACK_MIN : 0x20000;
 
 static void *
 threadfunc (void *unused)
@@ -60,7 +63,7 @@ do_test (void)
   /* With default 8MiB Linux stack size, creating 1024 threads can cause
      VM exhausiton on 32-bit machines.  Reduce stack size of each thread to
      128KiB for a maximum required VM size of 128MiB.  */
-  xpthread_attr_setstacksize (&attr, 128 * 1024);
+  xpthread_attr_setstacksize (&attr, kStacksize);
 
   for (i = 0; i < kNumThreads; ++i) {
     xpthread_create (&attr, threadfunc, NULL);