diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2009-09-27 20:44:25 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2009-09-27 20:44:25 +0000 |
commit | 0057022f7eac67cead06ab83249155fadd700c5f (patch) | |
tree | 802c6f026cc1bfc478c8fc56f6f2fb2f2b66a1e7 | |
parent | f29c03257918ec5859f4cb6c85b531423f182744 (diff) | |
download | gdb-0057022f7eac67cead06ab83249155fadd700c5f.zip gdb-0057022f7eac67cead06ab83249155fadd700c5f.tar.gz gdb-0057022f7eac67cead06ab83249155fadd700c5f.tar.bz2 |
* gdb.threads/manythreads.c (main): Increase thread stack size
to 2*PTHREAD_STACK_MIN.
* gdb.threads/multi-create.c (main): Likewise.
(create_function): Likewise.
-rw-r--r-- | gdb/testsuite/ChangeLog | 7 | ||||
-rw-r--r-- | gdb/testsuite/gdb.threads/manythreads.c | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.threads/multi-create.c | 4 |
3 files changed, 10 insertions, 3 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 159822f..407832e 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,12 @@ 2009-09-27 Ulrich Weigand <Ulrich.Weigand@de.ibm.com> + * gdb.threads/manythreads.c (main): Increase thread stack size + to 2*PTHREAD_STACK_MIN. + * gdb.threads/multi-create.c (main): Likewise. + (create_function): Likewise. + +2009-09-27 Ulrich Weigand <Ulrich.Weigand@de.ibm.com> + * gdb.base/dump.exp: Pass difference of pointer types instead of integer types as offset to restore in intarr3.srec case. diff --git a/gdb/testsuite/gdb.threads/manythreads.c b/gdb/testsuite/gdb.threads/manythreads.c index 1eb2cab..d2d8083 100644 --- a/gdb/testsuite/gdb.threads/manythreads.c +++ b/gdb/testsuite/gdb.threads/manythreads.c @@ -44,7 +44,7 @@ main (int argc, char **argv) pthread_attr_init (&attr); #ifdef PTHREAD_STACK_MIN - pthread_attr_setstacksize (&attr, PTHREAD_STACK_MIN); + pthread_attr_setstacksize (&attr, 2*PTHREAD_STACK_MIN); #endif /* Create a ton of quick-executing threads, then wait for them to diff --git a/gdb/testsuite/gdb.threads/multi-create.c b/gdb/testsuite/gdb.threads/multi-create.c index a341153..a90816f 100644 --- a/gdb/testsuite/gdb.threads/multi-create.c +++ b/gdb/testsuite/gdb.threads/multi-create.c @@ -43,7 +43,7 @@ create_function (void *arg) int j; pthread_attr_init (&attr); /* set breakpoint 1 here. */ - pthread_attr_setstacksize (&attr, PTHREAD_STACK_MIN); + pthread_attr_setstacksize (&attr, 2*PTHREAD_STACK_MIN); /* Create a ton of quick-executing threads, then wait for them to complete. */ @@ -70,7 +70,7 @@ main (int argc, char **argv) int n, i; pthread_attr_init (&attr); - pthread_attr_setstacksize (&attr, PTHREAD_STACK_MIN); + pthread_attr_setstacksize (&attr, 2*PTHREAD_STACK_MIN); for (n = 0; n < 100; ++n) { |