1 /* Spin locks (native Windows implementation).
2 Copyright (C) 2019-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 2, or (at your option)
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>, 2019. */
22 #include "windows-spin.h"
27 glwthread_spin_init (glwthread_spinlock_t
*lock
)
34 glwthread_spin_lock (glwthread_spinlock_t
*lock
)
36 /* Wait until lock->word becomes 0, then replace it with 1. */
37 /* InterlockedCompareExchange
38 <https://docs.microsoft.com/en-us/windows/win32/api/winnt/nf-winnt-interlockedcompareexchange> */
39 while (InterlockedCompareExchange (&lock
->word
, 1, 0))
45 glwthread_spin_trylock (glwthread_spinlock_t
*lock
)
47 /* If lock->word is 0, then replace it with 1. */
48 /* InterlockedCompareExchange
49 <https://docs.microsoft.com/en-us/windows/win32/api/winnt/nf-winnt-interlockedcompareexchange> */
50 if (InterlockedCompareExchange (&lock
->word
, 1, 0))
56 glwthread_spin_unlock (glwthread_spinlock_t
*lock
)
58 /* If lock->word is 1, then replace it with 0. */
59 /* InterlockedCompareExchange
60 <https://docs.microsoft.com/en-us/windows/win32/api/winnt/nf-winnt-interlockedcompareexchange> */
61 if (!InterlockedCompareExchange (&lock
->word
, 0, 1))
67 glwthread_spin_destroy (glwthread_spinlock_t
*lock
)