exp2l: Work around a NetBSD 10.0/i386 bug.
[gnulib.git] / lib / windows-spin.c
blobb04829d817c38d7ec182ab419a1f09a4fd8e73a0
1 /* Spin locks (native Windows implementation).
2 Copyright (C) 2019-2024 Free Software Foundation, Inc.
4 This file is free software: you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as
6 published by the Free Software Foundation; either version 2.1 of the
7 License, or (at your option) any later version.
9 This file 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 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser 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. */
19 #include <config.h>
21 /* Specification. */
22 #include "windows-spin.h"
24 #include <errno.h>
26 void
27 glwthread_spin_init (glwthread_spinlock_t *lock)
29 lock->word = 0;
30 MemoryBarrier ();
33 int
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))
41 return 0;
44 int
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))
51 return EBUSY;
52 return 0;
55 int
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))
62 return EINVAL;
63 return 0;
66 int
67 glwthread_spin_destroy (glwthread_spinlock_t *lock)
69 return 0;