summaryrefslogtreecommitdiff
path: root/nptl/tst-mutex7.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-03-07 10:40:53 +0000
committerUlrich Drepper <drepper@redhat.com>2004-03-07 10:40:53 +0000
commit4d1a02efc1117763c67fe012642381e3106500cf (patch)
tree3e1416ebaf41ca04937a91e3b9e6ba72b057c752 /nptl/tst-mutex7.c
parentead327594300796f6e87293c5a53827b744eb93d (diff)
Update.
2004-03-07 Ulrich Drepper <drepper@redhat.com> * tst-once4.c: Remove unnecessary macro definition. * tst-mutex7.c (do_test): Limit thread stack size. * tst-once2.c (do_test): Likewise. * tst-tls3.c (do_test): Likewise. * tst-tls1.c (do_test): Likewise. * tst-signal3.c (do_test): Likewise. * tst-kill6.c (do_test): Likewise. * tst-key4.c (do_test): Likewise. * tst-join4.c (do_test): Likewise. * tst-fork1.c (do_test): Likewise. * tst-context1.c (do_test): Likewise. * tst-cond2.c (do_test): Likewise. * tst-cond10.c (do_test): Likewise. * tst-clock2.c (do_test): Likewise. * tst-cancel10.c (do_test): Likewise. * tst-basic2.c (do_test): Likewise. * tst-barrier4.c (do_test): Likewise.
Diffstat (limited to 'nptl/tst-mutex7.c')
-rw-r--r--nptl/tst-mutex7.c23
1 files changed, 21 insertions, 2 deletions
diff --git a/nptl/tst-mutex7.c b/nptl/tst-mutex7.c
index 9ee8ece939..183fd10f82 100644
--- a/nptl/tst-mutex7.c
+++ b/nptl/tst-mutex7.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2002 Free Software Foundation, Inc.
+/* Copyright (C) 2002, 2004 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
@@ -60,9 +60,22 @@ tf (void *arg)
static int
do_test (void)
{
+ pthread_attr_t at;
pthread_t th[N];
int cnt;
+ if (pthread_attr_init (&at) != 0)
+ {
+ puts ("attr_init failed");
+ return 1;
+ }
+
+ if (pthread_attr_setstacksize (&at, 1 * 1024 * 1024) != 0)
+ {
+ puts ("attr_setstacksize failed");
+ return 1;
+ }
+
if (pthread_mutex_lock (&lock) != 0)
{
puts ("locking in parent failed");
@@ -70,12 +83,18 @@ do_test (void)
}
for (cnt = 0; cnt < N; ++cnt)
- if (pthread_create (&th[cnt], NULL, tf, (void *) (long int) cnt) != 0)
+ if (pthread_create (&th[cnt], &at, tf, (void *) (long int) cnt) != 0)
{
printf ("creating thread %d failed\n", cnt);
return 1;
}
+ if (pthread_attr_destroy (&at) != 0)
+ {
+ puts ("attr_destroy failed");
+ return 1;
+ }
+
if (pthread_mutex_unlock (&lock) != 0)
{
puts ("unlocking in parent failed");