]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/uclibc/lib/contrib/uclibc/test/nptl/tst-mutex7.c
update
[l4.git] / l4 / pkg / uclibc / lib / contrib / uclibc / test / nptl / tst-mutex7.c
1 /* Copyright (C) 2002, 2004 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3    Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
4
5    The GNU C Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 2.1 of the License, or (at your option) any later version.
9
10    The GNU C Library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
14
15    You should have received a copy of the GNU Lesser General Public
16    License along with the GNU C Library; if not, see
17    <http://www.gnu.org/licenses/>.  */
18
19 #include <pthread.h>
20 #include <stdio.h>
21 #include <time.h>
22
23
24 #ifndef INIT
25 # define INIT PTHREAD_MUTEX_INITIALIZER
26 #endif
27
28
29 static pthread_mutex_t lock = INIT;
30
31
32 #define ROUNDS 1000
33 #define N 100
34
35
36 static void *
37 tf (void *arg)
38 {
39   int nr = (long int) arg;
40   int cnt;
41   struct timespec ts = { .tv_sec = 0, .tv_nsec = 11000 };
42
43   for (cnt = 0; cnt < ROUNDS; ++cnt)
44     {
45       if (pthread_mutex_lock (&lock) != 0)
46         {
47           printf ("thread %d: failed to get the lock\n", nr);
48           return (void *) 1l;
49         }
50
51       if (pthread_mutex_unlock (&lock) != 0)
52         {
53           printf ("thread %d: failed to release the lock\n", nr);
54           return (void *) 1l;
55         }
56
57       nanosleep (&ts, NULL);
58     }
59
60   return NULL;
61 }
62
63
64 static int
65 do_test (void)
66 {
67   pthread_attr_t at;
68   pthread_t th[N];
69   int cnt;
70
71   if (pthread_attr_init (&at) != 0)
72     {
73       puts ("attr_init failed");
74       return 1;
75     }
76
77   if (pthread_attr_setstacksize (&at, 1 * 1024 * 1024) != 0)
78     {
79       puts ("attr_setstacksize failed");
80       return 1;
81     }
82
83   if (pthread_mutex_lock (&lock) != 0)
84     {
85       puts ("locking in parent failed");
86       return 1;
87     }
88
89   for (cnt = 0; cnt < N; ++cnt)
90     if (pthread_create (&th[cnt], &at, tf, (void *) (long int) cnt) != 0)
91       {
92         printf ("creating thread %d failed\n", cnt);
93         return 1;
94       }
95
96   if (pthread_attr_destroy (&at) != 0)
97     {
98       puts ("attr_destroy failed");
99       return 1;
100     }
101
102   if (pthread_mutex_unlock (&lock) != 0)
103     {
104       puts ("unlocking in parent failed");
105       return 1;
106     }
107
108   for (cnt = 0; cnt < N; ++cnt)
109     if (pthread_join (th[cnt], NULL) != 0)
110       {
111         printf ("joining thread %d failed\n", cnt);
112         return 1;
113       }
114
115   return 0;
116 }
117
118 #define TIMEOUT 60
119 #define TEST_FUNCTION do_test ()
120 #include "../test-skeleton.c"