Use unsigned constants for ICMP6 filters [BZ #22489]
[glibc.git] / mach / lock-intern.h
blobb6a075bc3a610e59c152a6d95c62d75d95af50c7
1 /* Copyright (C) 1994-2020 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/>. */
18 #ifndef _LOCK_INTERN_H
19 #define _LOCK_INTERN_H
21 #include <sys/cdefs.h>
22 #if defined __USE_EXTERN_INLINES && defined _LIBC
23 # include <lowlevellock.h>
24 #endif
26 #ifndef _EXTERN_INLINE
27 #define _EXTERN_INLINE __extern_inline
28 #endif
30 /* The type of a spin lock variable. */
31 typedef unsigned int __spin_lock_t;
33 /* Static initializer for spinlocks. */
34 #define __SPIN_LOCK_INITIALIZER LLL_INITIALIZER
36 /* Initialize LOCK. */
38 extern void __spin_lock_init (__spin_lock_t *__lock);
40 #if defined __USE_EXTERN_INLINES && defined _LIBC
41 _EXTERN_INLINE void
42 __spin_lock_init (__spin_lock_t *__lock)
44 *__lock = __SPIN_LOCK_INITIALIZER;
46 #endif
49 /* Lock LOCK, blocking if we can't get it. */
50 extern void __spin_lock_solid (__spin_lock_t *__lock);
52 /* Lock the spin lock LOCK. */
54 extern void __spin_lock (__spin_lock_t *__lock);
56 #if defined __USE_EXTERN_INLINES && defined _LIBC
57 _EXTERN_INLINE void
58 __spin_lock (__spin_lock_t *__lock)
60 lll_lock (__lock, 0);
62 #endif
64 /* Unlock LOCK. */
65 extern void __spin_unlock (__spin_lock_t *__lock);
67 #if defined __USE_EXTERN_INLINES && defined _LIBC
68 _EXTERN_INLINE void
69 __spin_unlock (__spin_lock_t *__lock)
71 lll_unlock (__lock, 0);
73 #endif
75 /* Try to lock LOCK; return nonzero if we locked it, zero if another has. */
76 extern int __spin_try_lock (__spin_lock_t *__lock);
78 #if defined __USE_EXTERN_INLINES && defined _LIBC
79 _EXTERN_INLINE int
80 __spin_try_lock (__spin_lock_t *__lock)
82 return (lll_trylock (__lock) == 0);
84 #endif
86 /* Return nonzero if LOCK is locked. */
87 extern int __spin_lock_locked (__spin_lock_t *__lock);
89 #if defined __USE_EXTERN_INLINES && defined _LIBC
90 _EXTERN_INLINE int
91 __spin_lock_locked (__spin_lock_t *__lock)
93 return (*(volatile __spin_lock_t *)__lock != 0);
95 #endif
97 /* Name space-clean internal interface to mutex locks. */
99 /* Initialize the newly allocated mutex lock LOCK for further use. */
100 extern void __mutex_init (void *__lock);
102 /* Lock the mutex lock LOCK. */
104 extern void __mutex_lock (void *__lock);
106 #if defined __USE_EXTERN_INLINES && defined _LIBC
107 _EXTERN_INLINE void
108 __mutex_lock (void *__lock)
110 __spin_lock ((__spin_lock_t *)__lock);
112 #endif
114 /* Unlock the mutex lock LOCK. */
116 extern void __mutex_unlock (void *__lock);
118 #if defined __USE_EXTERN_INLINES && defined _LIBC
119 _EXTERN_INLINE void
120 __mutex_unlock (void *__lock)
122 __spin_unlock ((__spin_lock_t *)__lock);
124 #endif
127 extern int __mutex_trylock (void *__lock);
129 #if defined __USE_EXTERN_INLINES && defined _LIBC
130 _EXTERN_INLINE int
131 __mutex_trylock (void *__lock)
133 return (__spin_try_lock ((__spin_lock_t *)__lock));
135 #endif
137 #endif /* lock-intern.h */