1 /* Copyright (C) 2002-2017 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
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.
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.
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/>. */
25 /* This test is a template for other tests to use. Other tests define
26 the following macros to change the behaviour of the template test.
27 The test is very simple, it configures N threads given the parameters
28 below and then proceeds to go through mutex lock and unlock
29 operations in each thread as described before for the thread
32 # define TYPE PTHREAD_MUTEX_DEFAULT
35 # define ROBUST PTHREAD_MUTEX_STALLED
38 # define DELAY_NSEC 11000
47 static pthread_mutex_t lock
;
49 /* Each thread locks and the subsequently unlocks the lock, yielding
50 the smallest critical section possible. After the unlock the thread
51 waits DELAY_NSEC nanoseconds before doing the lock and unlock again.
52 Every thread does this ROUNDS times. The lock and unlock are
53 checked for errors. */
57 int nr
= (long int) arg
;
59 struct timespec ts
= { .tv_sec
= 0, .tv_nsec
= DELAY_NSEC
};
61 for (cnt
= 0; cnt
< ROUNDS
; ++cnt
)
63 if (pthread_mutex_lock (&lock
) != 0)
65 printf ("thread %d: failed to get the lock\n", nr
);
69 if (pthread_mutex_unlock (&lock
) != 0)
71 printf ("thread %d: failed to release the lock\n", nr
);
75 if ((ts
.tv_sec
> 0) || (ts
.tv_nsec
> 0))
76 nanosleep (&ts
, NULL
);
82 /* Setup and run N threads, where each thread does as described
83 in the above thread function. The threads are given a minimal 1MiB
84 stack since they don't do anything between the lock and unlock. */
88 pthread_mutexattr_t a
;
90 if (pthread_mutexattr_init (&a
) != 0)
92 puts ("mutexattr_init failed");
96 if (pthread_mutexattr_settype (&a
, TYPE
) != 0)
98 puts ("mutexattr_settype failed");
102 if (pthread_mutexattr_setrobust (&a
, ROBUST
) != 0)
104 puts ("mutexattr_setrobust failed");
109 if (pthread_mutexattr_setprotocol (&a
, PTHREAD_PRIO_INHERIT
) != 0)
111 puts ("pthread_mutexattr_setprotocol failed");
116 int e
= pthread_mutex_init (&lock
, &a
);
122 puts ("PI mutexes unsupported");
126 puts ("mutex_init failed");
130 if (pthread_mutexattr_destroy (&a
) != 0)
132 puts ("mutexattr_destroy failed");
140 if (pthread_attr_init (&at
) != 0)
142 puts ("attr_init failed");
146 if (pthread_attr_setstacksize (&at
, 1 * 1024 * 1024) != 0)
148 puts ("attr_setstacksize failed");
152 if (pthread_mutex_lock (&lock
) != 0)
154 puts ("locking in parent failed");
158 for (cnt
= 0; cnt
< N
; ++cnt
)
159 if (pthread_create (&th
[cnt
], &at
, tf
, (void *) (long int) cnt
) != 0)
161 printf ("creating thread %d failed\n", cnt
);
165 if (pthread_attr_destroy (&at
) != 0)
167 puts ("attr_destroy failed");
171 if (pthread_mutex_unlock (&lock
) != 0)
173 puts ("unlocking in parent failed");
177 for (cnt
= 0; cnt
< N
; ++cnt
)
178 if (pthread_join (th
[cnt
], NULL
) != 0)
180 printf ("joining thread %d failed\n", cnt
);
188 #define TEST_FUNCTION do_test ()
189 #include "../test-skeleton.c"