From: Ulrich Weigand <weigand@i1.informatik.uni-erlangen.de>
To: gdb-patches@sources.redhat.com
Subject: [PATCH] Fix manythreads test case on s390
Date: Fri, 23 Apr 2004 16:33:00 -0000 [thread overview]
Message-ID: <200404231633.SAA27514@faui1d.informatik.uni-erlangen.de> (raw)
Hello,
the new manythreads.c test case fails on s390 when using NPTL,
because it tries to create 256 threads with default thread stack
size (which happens to be 8MB for NPTL). This is hard to do
when the total address space size is 2 GB...
This can be fixed by using pthread_addr_setstacksize to reduce
the thread stack size.
Bye,
Ulrich
ChangeLog:
* gdb.threads/manythreads.c: Reduce thread stack size.
Index: gdb/testsuite/gdb.threads/manythreads.c
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.threads/manythreads.c,v
retrieving revision 1.1
diff -c -p -r1.1 manythreads.c
*** gdb/testsuite/gdb.threads/manythreads.c 22 Apr 2004 22:19:40 -0000 1.1
--- gdb/testsuite/gdb.threads/manythreads.c 23 Apr 2004 16:15:20 -0000
*************** main (int argc, char **argv)
*** 19,24 ****
--- 19,25 ----
int i, j;
pthread_attr_init (&attr);
+ pthread_attr_setstacksize (&attr, PTHREAD_STACK_MIN);
/* Create a ton of quick-executing threads, then wait for them to
complete. */
--
Dr. Ulrich Weigand
weigand@informatik.uni-erlangen.de
next reply other threads:[~2004-04-23 16:33 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-04-23 16:33 Ulrich Weigand [this message]
2004-04-23 18:18 ` Daniel Jacobowitz
2004-04-23 19:25 ` Ulrich Weigand
2004-04-24 0:03 ` Andrew Cagney
2004-04-23 19:04 ` Jeff Johnston
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200404231633.SAA27514@faui1d.informatik.uni-erlangen.de \
--to=weigand@i1.informatik.uni-erlangen.de \
--cc=gdb-patches@sources.redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox