1 /* Test of spin locks for communication between threads and signal handlers.
2 Copyright (C) 2005, 2008-2020 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
9 This program 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
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Bruno Haible <bruno@clisp.org>, 2005. */
21 #if USE_ISOC_THREADS || USE_POSIX_THREADS || USE_ISOC_AND_POSIX_THREADS || USE_WINDOWS_THREADS
23 /* Whether to enable locking.
24 Uncomment this to get a test program without locking, to verify that
26 #define ENABLE_LOCKING 1
28 /* Whether to help the scheduler through explicit yield().
29 Uncomment this to see if the operating system has a fair scheduler. */
30 #define EXPLICIT_YIELD 1
32 /* Whether to print debugging messages. */
33 #define ENABLE_DEBUGGING 0
35 /* Number of simultaneous threads. */
36 #define THREAD_COUNT 10
38 /* Number of operations performed in each thread. */
39 #if !(defined _WIN32 && ! defined __CYGWIN__) && HAVE_PTHREAD_H && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 1) || __clang_major__ >= 3) && !defined __ibmxl__
41 /* The GCC built-ins are known to work fine. */
42 # define REPEAT_COUNT 5000
44 /* This is quite high, because with a smaller count, say 50000, we often get
45 an "OK" result even with the racy implementation that we pick on Fedora 13
46 Linux/x86_64 (gcc 4.4). */
47 # define REPEAT_COUNT 100000
56 #include "asyncsafe-spin.h"
58 # define asyncsafe_spin_init(lock) (void)(lock)
59 # define asyncsafe_spin_lock(lock, mask, saved_mask) \
60 ((void)(lock), (void)(mask), (void)(saved_mask))
61 # define asyncsafe_spin_unlock(lock, saved_mask) \
62 ((void)(lock), (void)(saved_mask))
63 # define asyncsafe_spin_destroy(lock) (void)(lock)
66 #include "glthread/lock.h"
67 #include "glthread/thread.h"
68 #include "glthread/yield.h"
75 #include "atomic-int-gnulib.h"
78 # define dbgprintf printf
80 # define dbgprintf if (0) printf
84 # define yield() gl_thread_yield ()
89 static sigset_t signals_to_block
;
91 #define ACCOUNT_COUNT 4
93 static int account
[ACCOUNT_COUNT
];
98 return ((unsigned int) rand () >> 3) % ACCOUNT_COUNT
;
102 check_accounts (void)
107 for (i
= 0; i
< ACCOUNT_COUNT
; i
++)
109 if (sum
!= ACCOUNT_COUNT
* 1000)
114 /* ------------------- Test use like normal locks ------------------- */
116 /* Test normal locks by having several bank accounts and several threads
117 which shuffle around money between the accounts and another thread
118 checking that all the money is still there. */
120 static asyncsafe_spinlock_t my_lock
;
123 lock_mutator_thread (void *arg
)
127 for (repeat
= REPEAT_COUNT
; repeat
> 0; repeat
--)
129 sigset_t saved_signals
;
132 dbgprintf ("Mutator %p before lock\n", gl_thread_self_pointer ());
133 asyncsafe_spin_lock (&my_lock
, &signals_to_block
, &saved_signals
);
134 dbgprintf ("Mutator %p after lock\n", gl_thread_self_pointer ());
136 i1
= random_account ();
137 i2
= random_account ();
138 value
= ((unsigned int) rand () >> 3) % 10;
139 account
[i1
] += value
;
140 account
[i2
] -= value
;
142 dbgprintf ("Mutator %p before unlock\n", gl_thread_self_pointer ());
143 asyncsafe_spin_unlock (&my_lock
, &saved_signals
);
144 dbgprintf ("Mutator %p after unlock\n", gl_thread_self_pointer ());
146 dbgprintf ("Mutator %p before check lock\n", gl_thread_self_pointer ());
147 asyncsafe_spin_lock (&my_lock
, &signals_to_block
, &saved_signals
);
149 asyncsafe_spin_unlock (&my_lock
, &saved_signals
);
150 dbgprintf ("Mutator %p after check unlock\n", gl_thread_self_pointer ());
155 dbgprintf ("Mutator %p dying.\n", gl_thread_self_pointer ());
159 static struct atomic_int lock_checker_done
;
162 lock_checker_thread (void *arg
)
164 while (get_atomic_int_value (&lock_checker_done
) == 0)
166 sigset_t saved_signals
;
168 dbgprintf ("Checker %p before check lock\n", gl_thread_self_pointer ());
169 asyncsafe_spin_lock (&my_lock
, &signals_to_block
, &saved_signals
);
171 asyncsafe_spin_unlock (&my_lock
, &saved_signals
);
172 dbgprintf ("Checker %p after check unlock\n", gl_thread_self_pointer ());
177 dbgprintf ("Checker %p dying.\n", gl_thread_self_pointer ());
182 test_asyncsafe_spin (void)
185 gl_thread_t checkerthread
;
186 gl_thread_t threads
[THREAD_COUNT
];
188 /* Initialization. */
189 for (i
= 0; i
< ACCOUNT_COUNT
; i
++)
191 init_atomic_int (&lock_checker_done
);
192 set_atomic_int_value (&lock_checker_done
, 0);
194 /* Spawn the threads. */
195 checkerthread
= gl_thread_create (lock_checker_thread
, NULL
);
196 for (i
= 0; i
< THREAD_COUNT
; i
++)
197 threads
[i
] = gl_thread_create (lock_mutator_thread
, NULL
);
199 /* Wait for the threads to terminate. */
200 for (i
= 0; i
< THREAD_COUNT
; i
++)
201 gl_thread_join (threads
[i
], NULL
);
202 set_atomic_int_value (&lock_checker_done
, 1);
203 gl_thread_join (checkerthread
, NULL
);
208 /* -------------------------------------------------------------------------- */
214 /* Declare failure if test takes too long, by using default abort
215 caused by SIGALRM. */
216 int alarm_value
= 600;
217 signal (SIGALRM
, SIG_DFL
);
221 sigemptyset (&signals_to_block
);
222 sigaddset (&signals_to_block
, SIGINT
);
224 asyncsafe_spin_init (&my_lock
);
226 printf ("Starting test_asyncsafe_spin ..."); fflush (stdout
);
227 test_asyncsafe_spin ();
228 printf (" OK\n"); fflush (stdout
);
235 /* No multithreading available. */
242 fputs ("Skipping test: multithreading not enabled\n", stderr
);