exp2l: Work around a NetBSD 10.0/i386 bug.
[gnulib.git] / lib / windows-timedrecmutex.h
blob537070fa2b0d4b284be22223c1e603119a5214ec
1 /* Timed recursive mutexes (native Windows implementation).
2 Copyright (C) 2005-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>, 2005, 2019.
18 Based on GCC's gthr-win32.h. */
20 #ifndef _WINDOWS_TIMEDRECMUTEX_H
21 #define _WINDOWS_TIMEDRECMUTEX_H
23 #define WIN32_LEAN_AND_MEAN /* avoid including junk */
24 #include <windows.h>
26 #include <time.h>
28 #include "windows-initguard.h"
30 /* The native Windows documentation says that CRITICAL_SECTION already
31 implements a recursive lock. But we need not rely on it: It's easy to
32 implement a recursive lock without this assumption. */
34 typedef struct
36 glwthread_initguard_t guard; /* protects the initialization */
37 DWORD owner;
38 unsigned long depth;
39 HANDLE event;
40 CRITICAL_SECTION lock;
42 glwthread_timedrecmutex_t;
44 #define GLWTHREAD_TIMEDRECMUTEX_INIT { GLWTHREAD_INITGUARD_INIT, 0, 0 }
46 #ifdef __cplusplus
47 extern "C" {
48 #endif
50 extern int glwthread_timedrecmutex_init (glwthread_timedrecmutex_t *mutex);
51 extern int glwthread_timedrecmutex_lock (glwthread_timedrecmutex_t *mutex);
52 extern int glwthread_timedrecmutex_trylock (glwthread_timedrecmutex_t *mutex);
53 extern int glwthread_timedrecmutex_timedlock (glwthread_timedrecmutex_t *mutex,
54 const struct timespec *abstime);
55 extern int glwthread_timedrecmutex_unlock (glwthread_timedrecmutex_t *mutex);
56 extern int glwthread_timedrecmutex_destroy (glwthread_timedrecmutex_t *mutex);
58 #ifdef __cplusplus
60 #endif
62 #endif /* _WINDOWS_TIMEDRECMUTEX_H */