1 /* Copyright (C) 2002-2023 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
24 /* This test is a template for other tests to use. Other tests define
25 the following macros to change the behaviour of the template test.
26 The test is very simple, it configures N threads given the parameters
27 below and then proceeds to go through mutex lock and unlock
28 operations in each thread as described before for the thread
31 # define TYPE PTHREAD_MUTEX_DEFAULT
34 # define ROBUST PTHREAD_MUTEX_STALLED
37 # define DELAY_NSEC 11000
46 static pthread_mutex_t lock
;
48 /* Each thread locks and the subsequently unlocks the lock, yielding
49 the smallest critical section possible. After the unlock the thread
50 waits DELAY_NSEC nanoseconds before doing the lock and unlock again.
51 Every thread does this ROUNDS times. The lock and unlock are
52 checked for errors. */
56 int nr
= (long int) arg
;
58 struct timespec ts
= { .tv_sec
= 0, .tv_nsec
= DELAY_NSEC
};
60 for (cnt
= 0; cnt
< ROUNDS
; ++cnt
)
62 if (pthread_mutex_lock (&lock
) != 0)
64 printf ("thread %d: failed to get the lock\n", nr
);
68 if (pthread_mutex_unlock (&lock
) != 0)
70 printf ("thread %d: failed to release the lock\n", nr
);
74 if ((ts
.tv_sec
> 0) || (ts
.tv_nsec
> 0))
75 nanosleep (&ts
, NULL
);
81 /* Setup and run N threads, where each thread does as described
82 in the above thread function. The threads are given a minimal 1MiB
83 stack since they don't do anything between the lock and unlock. */
87 pthread_mutexattr_t a
;
89 if (pthread_mutexattr_init (&a
) != 0)
91 puts ("mutexattr_init failed");
95 if (pthread_mutexattr_settype (&a
, TYPE
) != 0)
97 puts ("mutexattr_settype failed");
101 if (pthread_mutexattr_setrobust (&a
, ROBUST
) != 0)
103 puts ("mutexattr_setrobust failed");
108 if (pthread_mutexattr_setprotocol (&a
, PTHREAD_PRIO_INHERIT
) != 0)
110 puts ("pthread_mutexattr_setprotocol failed");
115 int e
= pthread_mutex_init (&lock
, &a
);
121 puts ("PI mutexes unsupported");
125 puts ("mutex_init failed");
129 if (pthread_mutexattr_destroy (&a
) != 0)
131 puts ("mutexattr_destroy failed");
139 if (pthread_attr_init (&at
) != 0)
141 puts ("attr_init failed");
145 if (pthread_attr_setstacksize (&at
, 1 * 1024 * 1024) != 0)
147 puts ("attr_setstacksize failed");
151 if (pthread_mutex_lock (&lock
) != 0)
153 puts ("locking in parent failed");
157 for (cnt
= 0; cnt
< N
; ++cnt
)
158 if (pthread_create (&th
[cnt
], &at
, tf
, (void *) (long int) cnt
) != 0)
160 printf ("creating thread %d failed\n", cnt
);
164 if (pthread_attr_destroy (&at
) != 0)
166 puts ("attr_destroy failed");
170 if (pthread_mutex_unlock (&lock
) != 0)
172 puts ("unlocking in parent failed");
176 for (cnt
= 0; cnt
< N
; ++cnt
)
177 if (pthread_join (th
[cnt
], NULL
) != 0)
179 printf ("joining thread %d failed\n", cnt
);
187 #define TEST_FUNCTION do_test ()
188 #include "../test-skeleton.c"