]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Sun, 7 Mar 2004 10:40:53 +0000 (10:40 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 7 Mar 2004 10:40:53 +0000 (10:40 +0000)
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.

18 files changed:
nptl/ChangeLog
nptl/tst-barrier4.c
nptl/tst-basic2.c
nptl/tst-cancel10.c
nptl/tst-clock2.c
nptl/tst-cond10.c
nptl/tst-cond2.c
nptl/tst-context1.c
nptl/tst-fork1.c
nptl/tst-join4.c
nptl/tst-key4.c
nptl/tst-kill6.c
nptl/tst-mutex7.c
nptl/tst-once2.c
nptl/tst-signal3.c
nptl/tst-tls1.c
nptl/tst-tls2.c
nptl/tst-tls3.c

index dcb26a5a6e99c451fc3ecc6540a8e6748fd7812e..6d271a05b3d2fad5cba61cbc5fc1f53a1ad006f3 100644 (file)
@@ -1,3 +1,24 @@
+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.
+
 2004-03-05  Ulrich Drepper  <drepper@redhat.com>
 
        * sysdeps/i386/tls.h: Use GLRO instead of GL where appropriate.
index a811feefa5448b517153cecba526970f2026f27c..56ea044e0d421f98e52a75d8bfa8e3bb2541d2ce 100644 (file)
@@ -64,8 +64,21 @@ tf (void *arg)
 static int
 do_test (void)
 {
+  pthread_attr_t at;
   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_barrier_init (&b1, NULL, N) != 0)
     {
       puts ("1st barrier_init failed");
@@ -80,12 +93,18 @@ do_test (void)
 
   pthread_t th[N - 1];
   for (cnt = 0; cnt < N - 1; ++cnt)
-    if (pthread_create (&th[cnt], NULL, tf, NULL) != 0)
+    if (pthread_create (&th[cnt], &at, tf, NULL) != 0)
       {
        puts ("pthread_create failed");
        return 1;
       }
 
+  if (pthread_attr_destroy (&at) != 0)
+    {
+      puts ("attr_destroy failed");
+      return 1;
+    }
+
   tf (NULL);
 
   for (cnt = 0; cnt < N - 1; ++cnt)
index b9478c08120b40b8f2c4bc427583ee6ac485e826..1c4632ceb073550d93b8a2fc16f8e883d50be681 100644 (file)
@@ -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.
 
@@ -49,6 +49,20 @@ 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;
+    }
+
   int i;
   for (i = 0; i < N; ++i)
     {
@@ -64,7 +78,7 @@ do_test (void)
          exit (1);
        }
 
-      if (pthread_create (&th[i], NULL, tf, (void *) (long int) i) != 0)
+      if (pthread_create (&th[i], &at, tf, (void *) (long int) i) != 0)
        {
          puts ("create failed");
          exit (1);
@@ -79,6 +93,12 @@ do_test (void)
       printf ("created thread %d\n", i);
     }
 
+  if (pthread_attr_destroy (&at) != 0)
+    {
+      puts ("attr_destroy failed");
+      return 1;
+    }
+
   int result = 0;
   for (i = 0; i < N; ++i)
     {
index b8b995338cd21b2c0486181528d2b85563eea84f..7af0f2f84bfd206e143df9bd0354e565a2a92997 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003 Free Software Foundation, Inc.
+/* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@redhat.com>, 2003.
 
@@ -71,17 +71,37 @@ tf (void *arg)
 static int
 do_test (void)
 {
+  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;
+    }
+
 #define N 20
   int i;
   pthread_t th[N];
 
   for (i = 0; i < N; ++i)
-    if (pthread_create (&th[i], NULL, tf, (void *) (long int) i) != 0)
+    if (pthread_create (&th[i], &at, tf, (void *) (long int) i) != 0)
       {
        puts ("create failed");
        exit (1);
       }
 
+  if (pthread_attr_destroy (&at) != 0)
+    {
+      puts ("attr_destroy failed");
+      return 1;
+    }
+
   for (i = 0; i < N; ++i)
     {
       void *r;
index 4c716b00110f2f3401407e8924a95b20294c6a41..62e57520321b88a5cfdb1e00821d2b61622e765a 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003 Free Software Foundation, Inc.
+/* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@redhat.com>, 2003.
 
@@ -78,11 +78,25 @@ do_test (void)
   cl[0] = CLOCK_THREAD_CPUTIME_ID;
 #endif
 
+  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;
+    }
+
   int i;
   int e;
   for (i = 0; i < N; ++i)
     {
-      if (pthread_create (&th[i], NULL, tf, NULL) != 0)
+      if (pthread_create (&th[i], &at, tf, NULL) != 0)
        {
          puts ("create failed");
          return 1;
@@ -106,6 +120,12 @@ do_test (void)
        }
     }
 
+  if (pthread_attr_destroy (&at) != 0)
+    {
+      puts ("attr_destroy failed");
+      return 1;
+    }
+
   struct timespec t[N + 1];
   for (i = 0; i < N + 1; ++i)
     if (clock_gettime (cl[i], &t[i]) != 0)
index 5bf5d1fef0d131af3078b2483d234780e13f57bd..34956d468a67894c562be9125cfe0dc63c8c6876 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003 Free Software Foundation, Inc.
+/* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@redhat.com>, 2003.
 
@@ -87,6 +87,20 @@ 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;
+    }
+
   int r;
   for (r = 0; r < ROUNDS; ++r)
     {
@@ -96,7 +110,7 @@ do_test (void)
       pthread_t th[N];
       for (i = 0; i < N; ++i)
        {
-         if (pthread_create (&th[i], NULL, tf, NULL) != 0)
+         if (pthread_create (&th[i], &at, tf, NULL) != 0)
            {
              puts ("create failed");
              exit (1);
@@ -145,6 +159,12 @@ do_test (void)
          }
     }
 
+  if (pthread_attr_destroy (&at) != 0)
+    {
+      puts ("attr_destroy failed");
+      return 1;
+    }
+
   return 0;
 }
 
index 21bf817b135dd80f95189c8eeb93ff1f80f8f4ee..36f0f294129297c70202c38e97a7be45704ad71d 100644 (file)
@@ -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);
index 0edee00c7a1bc2d42fb9af58fe65510ae1763420..ff6e381636d8475b3c15a9b29994d7613570f7e3 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003 Free Software Foundation, Inc.
+/* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@redhat.com>, 2003.
 
@@ -111,13 +111,33 @@ do_test (void)
     }
   puts ("global OK");
 
+  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 (n = 0; n < N; ++n)
-    if (pthread_create (&th[n], NULL, tf, (void *) (long int) n) != 0)
+    if (pthread_create (&th[n], &at, tf, (void *) (long int) n) != 0)
       {
        puts ("create failed");
        exit (1);
       }
 
+  if (pthread_attr_destroy (&at) != 0)
+    {
+      puts ("attr_destroy failed");
+      return 1;
+    }
+
   for (n = 0; n < N; ++n)
     if (pthread_join (th[n], NULL) != 0)
       {
index 56ffe50d9e77f167282c585219cb02afcf418ee7..33c4ed84fe26343583026e23a5c6a757a95d6b06 100644 (file)
@@ -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 Roland McGrath <roland@redhat.com>, 2002.
 
@@ -71,6 +71,19 @@ main (void)
   pthread_t th[N];
   int i;
   int result = 0;
+  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)
     if (pthread_create (&th[i], NULL, thread_function,
@@ -80,6 +93,12 @@ main (void)
        exit (1);
       }
 
+  if (pthread_attr_destroy (&at) != 0)
+    {
+      puts ("attr_destroy failed");
+      return 1;
+    }
+
   for (i = 0; i < N; ++i)
     {
       void *v;
index 0b605907da9be571e38a1ff0cc49c5dcc3434c8a..b13a510111c171a4e11afe72326e3aa62d7be182 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003 Free Software Foundation, Inc.
+/* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@redhat.com>, 2003.
 
@@ -48,19 +48,25 @@ do_test (void)
       exit (1);
     }
 
-  pthread_t th[2];
+  pthread_attr_t a;
 
-  if (pthread_create (&th[0], NULL, tf, NULL) != 0)
+  if (pthread_attr_init (&a) != 0)
     {
-      puts ("1st create failed");
+      puts ("attr_init failed");
       exit (1);
     }
 
-  pthread_attr_t a;
+  if (pthread_attr_setstacksize (&a, 1 * 1024 * 1024) != 0)
+    {
+      puts ("attr_setstacksize failed");
+      return 1;
+    }
 
-  if (pthread_attr_init (&a) != 0)
+  pthread_t th[2];
+
+  if (pthread_create (&th[0], &a, tf, NULL) != 0)
     {
-      puts ("attr_init failed");
+      puts ("1st create failed");
       exit (1);
     }
 
index 7e9bfddccaed641e94ed84411fa5fb2796eb6220..0a5b448e5044b050bf5efe548b66a1f65ad90c96 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003 Free Software Foundation, Inc.
+/* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@redhat.com>, 2003.
 
@@ -75,6 +75,20 @@ do_test (void)
        exit (1);
       }
 
+  pthread_attr_t a;
+
+  if (pthread_attr_init (&a) != 0)
+    {
+      puts ("attr_init failed");
+      exit (1);
+    }
+
+  if (pthread_attr_setstacksize (&a, 1 * 1024 * 1024) != 0)
+    {
+      puts ("attr_setstacksize failed");
+      return 1;
+    }
+
   for (i = 0; i < 10; ++i)
     {
       int j;
@@ -109,6 +123,12 @@ do_test (void)
          }
     }
 
+  if (pthread_attr_destroy (&a) != 0)
+    {
+      puts ("attr_destroy failed");
+      exit (1);
+    }
+
   return 0;
 }
 
index 9956dcb9b8167643d00054071467a2e00730e21b..26e82d98f033975220f7ca98633dc672c1667e80 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003 Free Software Foundation, Inc.
+/* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@redhat.com>, 2003.
 
@@ -88,15 +88,35 @@ do_test (void)
       exit (1);
     }
 
+  pthread_attr_t a;
+
+  if (pthread_attr_init (&a) != 0)
+    {
+      puts ("attr_init failed");
+      exit (1);
+    }
+
+  if (pthread_attr_setstacksize (&a, 1 * 1024 * 1024) != 0)
+    {
+      puts ("attr_setstacksize failed");
+      return 1;
+    }
+
   pthread_t th[N];
   int i;
   for (i = 0; i < N; ++i)
-    if (pthread_create (&th[i], NULL, tf, NULL) != 0)
+    if (pthread_create (&th[i], &a, tf, NULL) != 0)
       {
        puts ("create failed");
        exit (1);
       }
 
+  if (pthread_attr_destroy (&a) != 0)
+    {
+      puts ("attr_destroy failed");
+      exit (1);
+    }
+
   if (sem_init (&sem, 0, 0) != 0)
     {
       puts ("sem_init failed");
index 9ee8ece939a796a7d750ced1e9d93aaac7e64b20..183fd10f823e8d4117cd4c6957ee86e921a44b9c 100644 (file)
@@ -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");
index 3fbc4a975dc6d6a8800f293329f5eff50574b1fe..c606345384485957fc0f1317fbbe6f63dc004948 100644 (file)
@@ -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,16 +60,35 @@ 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;
+    }
+
   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 ("creation of thread %d failed\n", cnt);
        return 1;
       }
 
+  if (pthread_attr_destroy (&at) != 0)
+    {
+      puts ("attr_destroy failed");
+      return 1;
+    }
+
   for (cnt = 0; cnt < N; ++cnt)
     if (pthread_join (th[cnt], NULL) != 0)
       {
index ef9ca9cc15bfc6d299b2680110cd52cef473d471..e4756c56abcbbd027fd59d77840b7f45081dcd8e 100644 (file)
@@ -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.
 
@@ -132,6 +132,20 @@ do_test (void)
       exit (1);
     }
 
+  pthread_attr_t a;
+
+  if (pthread_attr_init (&a) != 0)
+    {
+      puts ("attr_init failed");
+      exit (1);
+    }
+
+  if (pthread_attr_setstacksize (&a, 1 * 1024 * 1024) != 0)
+    {
+      puts ("attr_setstacksize failed");
+      return 1;
+    }
+
   for (i = 0; i < N; ++i)
     {
       if (pthread_mutex_init (&lock[i], NULL) != 0)
@@ -144,13 +158,19 @@ do_test (void)
          printf ("mutex_lock[%d] failed\n", i);
        }
 
-      if (pthread_create (&th[i], NULL, tf, (void *) (long int) i) != 0)
+      if (pthread_create (&th[i], &a, tf, (void *) (long int) i) != 0)
        {
          printf ("create of thread %d failed\n", i);
          exit (1);
        }
     }
 
+  if (pthread_attr_destroy (&a) != 0)
+    {
+      puts ("attr_destroy failed");
+      exit (1);
+    }
+
   int result = 0;
   unsigned int r = 42;
   pid_t pid = getpid ();
index 36681629e3b0cec82417be7c23647f895ccb56e2..4e191222a7c6605abad15c94280c2bab02554d2f 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003 Free Software Foundation, Inc.
+/* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@redhat.com>, 2003.
 
@@ -71,6 +71,20 @@ do_test (void)
       exit (1);
     }
 
+  pthread_attr_t a;
+
+  if (pthread_attr_init (&a) != 0)
+    {
+      puts ("attr_init failed");
+      exit (1);
+    }
+
+  if (pthread_attr_setstacksize (&a, 1 * 1024 * 1024) != 0)
+    {
+      puts ("attr_setstacksize failed");
+      return 1;
+    }
+
 #define N 10
   int i;
   for (i = 0; i < N; ++i)
@@ -79,7 +93,7 @@ do_test (void)
       pthread_t th[M];
       int j;
       for (j = 0; j < M; ++j, ++s.a)
-       if (pthread_create (&th[j], NULL, tf, NULL) != 0)
+       if (pthread_create (&th[j], &a, tf, NULL) != 0)
          {
            puts ("pthread_create failed");
            exit (1);
@@ -93,6 +107,12 @@ do_test (void)
          }
     }
 
+  if (pthread_attr_destroy (&a) != 0)
+    {
+      puts ("attr_destroy failed");
+      exit (1);
+    }
+
   return 0;
 #endif
 }
index 1d8ea14a882d1984055345817148dc5c6055feac..73ed33eb6a50293ce28f8b2c93db9bf7b81407ef 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003 Free Software Foundation, Inc.
+/* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@redhat.com>, 2003.
 
@@ -140,14 +140,34 @@ do_test (void)
       exit (1);
     }
 
+  pthread_attr_t a;
+
+  if (pthread_attr_init (&a) != 0)
+    {
+      puts ("attr_init failed");
+      exit (1);
+    }
+
+  if (pthread_attr_setstacksize (&a, 1 * 1024 * 1024) != 0)
+    {
+      puts ("attr_setstacksize failed");
+      return 1;
+    }
+
   int i;
   for (i = 0; i < N; ++i)
-    if (pthread_create (&th[i], NULL, tf, cbs[i]) != 0)
+    if (pthread_create (&th[i], &a, tf, cbs[i]) != 0)
       {
        puts ("pthread_create failed");
        exit (1);
       }
 
+  if (pthread_attr_destroy (&a) != 0)
+    {
+      puts ("attr_destroy failed");
+      exit (1);
+    }
+
   pthread_barrier_wait (&b);
 
   sigset_t ss;
index 20ee3e30c2168ad69bed0317d4700822fcba1862..8c2663bb04dca6ad442c98d5cc093ca3867e8bd8 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003 Free Software Foundation, Inc.
+/* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@redhat.com>, 2003.
 
@@ -127,12 +127,26 @@ do_test (void)
       exit (1);
     }
 
+  pthread_attr_t a;
+
+  if (pthread_attr_init (&a) != 0)
+    {
+      puts ("attr_init failed");
+      exit (1);
+    }
+
+  if (pthread_attr_setstacksize (&a, 1 * 1024 * 1024) != 0)
+    {
+      puts ("attr_setstacksize failed");
+      return 1;
+    }
+
   int r;
   for (r = 0; r < 10; ++r)
     {
       int i;
       for (i = 0; i < N; ++i)
-       if (pthread_create (&th[i], NULL, tf, cbs[i]) != 0)
+       if (pthread_create (&th[i], &a, tf, cbs[i]) != 0)
          {
            puts ("pthread_create failed");
            exit (1);
@@ -185,6 +199,12 @@ do_test (void)
          }
     }
 
+  if (pthread_attr_destroy (&a) != 0)
+    {
+      puts ("attr_destroy failed");
+      exit (1);
+    }
+
   return 0;
 #endif
 }
This page took 0.085881 seconds and 5 git commands to generate.