aboutsummaryrefslogtreecommitdiff
path: root/nptl/tst-cond2.c
diff options
context:
space:
mode:
Diffstat (limited to 'nptl/tst-cond2.c')
-rw-r--r--nptl/tst-cond2.c24
1 files changed, 22 insertions, 2 deletions
diff --git a/nptl/tst-cond2.c b/nptl/tst-cond2.c
index 21bf817b13..36f0f29412 100644
--- a/nptl/tst-cond2.c
+++ b/nptl/tst-cond2.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+/* Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
@@ -86,11 +86,25 @@ do_test (void)
exit (1);
}
+ pthread_attr_t at;
+
+ 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;
+ }
+
for (i = 0; i < N; ++i)
{
printf ("create thread %d\n", i);
- err = pthread_create (&th[i], NULL, tf, (void *) (long int) i);
+ err = pthread_create (&th[i], &at, tf, (void *) (long int) i);
if (err != 0)
error (EXIT_FAILURE, err, "cannot create thread %d", i);
@@ -106,6 +120,12 @@ do_test (void)
}
}
+ if (pthread_attr_destroy (&at) != 0)
+ {
+ puts ("attr_destroy failed");
+ return 1;
+ }
+
puts ("get lock outselves");
err = pthread_mutex_lock (&mut);