VirtualBox

source: vbox/trunk/include/iprt/critsect.h@ 25685

Last change on this file since 25685 was 25685, checked in by vboxsync, 15 years ago

iprt,pdmcritsect: Some more lock validator code, almost there now... :-)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 11.7 KB
Line 
1/** @file
2 * IPRT - Critical Sections.
3 */
4
5/*
6 * Copyright (C) 2006-2009 Sun Microsystems, Inc.
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 *
25 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
26 * Clara, CA 95054 USA or visit http://www.sun.com if you need
27 * additional information or have any questions.
28 */
29
30#ifndef ___iprt_critsect_h
31#define ___iprt_critsect_h
32
33#include <iprt/cdefs.h>
34#include <iprt/types.h>
35#include <iprt/assert.h>
36#ifdef IN_RING3
37# include <iprt/thread.h>
38#endif
39
40
41RT_C_DECLS_BEGIN
42
43/** @defgroup grp_rt_critsect RTCritSect - Critical Sections
44 *
45 * "Critical section" synchronization primitives can be used to
46 * protect a section of code or data to which access must be exclusive;
47 * only one thread can hold access to a critical section at one time.
48 *
49 * A critical section is a fast recursive write lock; if the critical
50 * section is not acquired, then entering it is fast (requires no system
51 * call). IPRT uses the Windows terminology here; on other platform, this
52 * might be called a "futex" or a "fast mutex". As opposed to IPRT
53 * "fast mutexes" (see @ref grp_rt_sems_fast_mutex ), critical sections
54 * are recursive.
55 *
56 * Use RTCritSectInit to initialize a critical section; use RTCritSectEnter
57 * and RTCritSectLeave to acquire and release access.
58 *
59 * For an overview of all types of synchronization primitives provided
60 * by IPRT (event, mutex/fast mutex/read-write mutex semaphores), see
61 * @ref grp_rt_sems .
62 *
63 * @ingroup grp_rt
64 * @{
65 */
66
67/**
68 * Critical section.
69 */
70typedef struct RTCRITSECT
71{
72 /** Magic used to validate the section state.
73 * RTCRITSECT_MAGIC is the value of an initialized & operational section. */
74 volatile uint32_t u32Magic;
75 /** Number of lockers.
76 * -1 if the section is free. */
77 volatile int32_t cLockers;
78 /** The owner thread. */
79 volatile RTNATIVETHREAD NativeThreadOwner;
80 /** Number of nested enter operations performed.
81 * Greater or equal to 1 if owned, 0 when free.
82 */
83 volatile int32_t cNestings;
84 /** Section flags - the RTCRITSECT_FLAGS_* \#defines. */
85 uint32_t fFlags;
86 /** The semaphore to block on. */
87 RTSEMEVENT EventSem;
88 /** Lock validator record. Only used in strict builds. */
89 R3R0PTRTYPE(PRTLOCKVALRECEXCL) pValidatorRec;
90 /** Alignmnet padding. */
91 RTHCPTR Alignment;
92} RTCRITSECT;
93AssertCompileSize(RTCRITSECT, HC_ARCH_BITS == 32 ? 32 : 48);
94/** Pointer to a critical section. */
95typedef RTCRITSECT *PRTCRITSECT;
96/** Pointer to a const critical section. */
97typedef const RTCRITSECT *PCRTCRITSECT;
98
99/** RTCRITSECT::u32Magic value. (Hiromi Uehara) */
100#define RTCRITSECT_MAGIC UINT32_C(0x19790326)
101
102/** If set, nesting(/recursion) is not allowed. */
103#define RTCRITSECT_FLAGS_NO_NESTING UINT32_C(0x00000001)
104/** Disables lock validation. */
105#define RTCRITSECT_FLAGS_NO_LOCK_VAL UINT32_C(0x00000002)
106
107#ifdef IN_RING3
108
109/**
110 * Initialize a critical section.
111 */
112RTDECL(int) RTCritSectInit(PRTCRITSECT pCritSect);
113
114/**
115 * Initialize a critical section.
116 *
117 * @returns iprt status code.
118 * @param pCritSect Pointer to the critical section structure.
119 * @param fFlags Flags, any combination of the RTCRITSECT_FLAGS
120 * \#defines.
121 * @param hClass The class (no reference consumed). If NIL, the
122 * no lock order validation will be performed on
123 * this lock.
124 * @param uSubClass The sub-class. This is used to define lock
125 * order inside the same class. If you don't know,
126 * then pass RTLOCKVAL_SUB_CLASS_NONE.
127 * @param pszName The lock name (optional).
128 */
129RTDECL(int) RTCritSectInitEx(PRTCRITSECT pCritSect, uint32_t fFlags,
130 RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszName);
131
132/**
133 * Enter a critical section.
134 *
135 * @returns VINF_SUCCESS on success.
136 * @returns VERR_SEM_NESTED if nested enter on a no nesting section. (Asserted.)
137 * @returns VERR_SEM_DESTROYED if RTCritSectDelete was called while waiting.
138 * @param pCritSect The critical section.
139 */
140RTDECL(int) RTCritSectEnter(PRTCRITSECT pCritSect);
141
142/**
143 * Enter a critical section.
144 *
145 * @retval VINF_SUCCESS on success.
146 * @retval VERR_SEM_NESTED if nested enter on a no nesting section. (Asserted.)
147 * @retval VERR_SEM_DESTROYED if RTCritSectDelete was called while waiting.
148 *
149 * @param pCritSect The critical section.
150 * @param uId Where we're entering the section.
151 * @param pszFile The source position - file.
152 * @param iLine The source position - line.
153 * @param pszFunction The source position - function.
154 */
155RTDECL(int) RTCritSectEnterDebug(PRTCRITSECT pCritSect, RTHCUINTPTR uId, RT_SRC_POS_DECL);
156
157/**
158 * Try enter a critical section.
159 *
160 * @retval VINF_SUCCESS on success.
161 * @retval VERR_SEM_BUSY if the critsect was owned.
162 * @retval VERR_SEM_NESTED if nested enter on a no nesting section. (Asserted.)
163 * @retval VERR_SEM_DESTROYED if RTCritSectDelete was called while waiting.
164 *
165 * @param pCritSect The critical section.
166 */
167RTDECL(int) RTCritSectTryEnter(PRTCRITSECT pCritSect);
168
169/**
170 * Try enter a critical section.
171 *
172 * @retval VINF_SUCCESS on success.
173 * @retval VERR_SEM_BUSY if the critsect was owned.
174 * @retval VERR_SEM_NESTED if nested enter on a no nesting section. (Asserted.)
175 * @retval VERR_SEM_DESTROYED if RTCritSectDelete was called while waiting.
176 *
177 * @param pCritSect The critical section.
178 * @param uId Where we're entering the section.
179 * @param pszFile The source position - file.
180 * @param iLine The source position - line.
181 * @param pszFunction The source position - function.
182 */
183RTDECL(int) RTCritSectTryEnterDebug(PRTCRITSECT pCritSect, RTHCUINTPTR uId, RT_SRC_POS_DECL);
184
185/**
186 * Enter multiple critical sections.
187 *
188 * This function will enter ALL the specified critical sections before returning.
189 *
190 * @returns VINF_SUCCESS on success.
191 * @returns VERR_SEM_NESTED if nested enter on a no nesting section. (Asserted.)
192 * @returns VERR_SEM_DESTROYED if RTCritSectDelete was called while waiting.
193 * @param cCritSects Number of critical sections in the array.
194 * @param papCritSects Array of critical section pointers.
195 *
196 * @remark Please note that this function will not necessarily come out favourable in a
197 * fight with other threads which are using the normal RTCritSectEnter() function.
198 * Therefore, avoid having to enter multiple critical sections!
199 */
200RTDECL(int) RTCritSectEnterMultiple(size_t cCritSects, PRTCRITSECT *papCritSects);
201
202/**
203 * Enter multiple critical sections.
204 *
205 * This function will enter ALL the specified critical sections before returning.
206 *
207 * @returns VINF_SUCCESS on success.
208 * @returns VERR_SEM_NESTED if nested enter on a no nesting section. (Asserted.)
209 * @returns VERR_SEM_DESTROYED if RTCritSectDelete was called while waiting.
210 *
211 * @param cCritSects Number of critical sections in the array.
212 * @param papCritSects Array of critical section pointers.
213 * @param uId Where we're entering the section.
214 * @param pszFile The source position - file.
215 * @param iLine The source position - line.
216 * @param pszFunction The source position - function.
217 *
218 * @remark See RTCritSectEnterMultiple().
219 */
220RTDECL(int) RTCritSectEnterMultipleDebug(size_t cCritSects, PRTCRITSECT *papCritSects, RTUINTPTR uId, RT_SRC_POS_DECL);
221
222/**
223 * Leave a critical section.
224 *
225 * @returns VINF_SUCCESS.
226 * @param pCritSect The critical section.
227 */
228RTDECL(int) RTCritSectLeave(PRTCRITSECT pCritSect);
229
230/**
231 * Leave multiple critical sections.
232 *
233 * @returns VINF_SUCCESS.
234 * @param cCritSects Number of critical sections in the array.
235 * @param papCritSects Array of critical section pointers.
236 */
237RTDECL(int) RTCritSectLeaveMultiple(size_t cCritSects, PRTCRITSECT *papCritSects);
238
239/**
240 * Deletes a critical section.
241 *
242 * @returns VINF_SUCCESS.
243 * @param pCritSect The critical section.
244 */
245RTDECL(int) RTCritSectDelete(PRTCRITSECT pCritSect);
246
247/**
248 * Checks the caller is the owner of the critical section.
249 *
250 * @returns true if owner.
251 * @returns false if not owner.
252 * @param pCritSect The critical section.
253 */
254DECLINLINE(bool) RTCritSectIsOwner(PCRTCRITSECT pCritSect)
255{
256 return pCritSect->NativeThreadOwner == RTThreadNativeSelf();
257}
258
259#endif /* IN_RING3 */
260
261/**
262 * Checks the section is owned by anyone.
263 *
264 * @returns true if owned.
265 * @returns false if not owned.
266 * @param pCritSect The critical section.
267 */
268DECLINLINE(bool) RTCritSectIsOwned(PCRTCRITSECT pCritSect)
269{
270 return pCritSect->NativeThreadOwner != NIL_RTNATIVETHREAD;
271}
272
273/**
274 * Gets the thread id of the critical section owner.
275 *
276 * @returns Thread id of the owner thread if owned.
277 * @returns NIL_RTNATIVETHREAD is not owned.
278 * @param pCritSect The critical section.
279 */
280DECLINLINE(RTNATIVETHREAD) RTCritSectGetOwner(PCRTCRITSECT pCritSect)
281{
282 return pCritSect->NativeThreadOwner;
283}
284
285/**
286 * Checks if a critical section is initialized or not.
287 *
288 * @returns true if initialized.
289 * @returns false if not initialized.
290 * @param pCritSect The critical section.
291 */
292DECLINLINE(bool) RTCritSectIsInitialized(PCRTCRITSECT pCritSect)
293{
294 return pCritSect->u32Magic == RTCRITSECT_MAGIC;
295}
296
297/**
298 * Gets the recursion depth.
299 *
300 * @returns The recursion depth.
301 * @param pCritSect The Critical section
302 */
303DECLINLINE(uint32_t) RTCritSectGetRecursion(PCRTCRITSECT pCritSect)
304{
305 return pCritSect->cNestings;
306}
307
308/**
309 * Gets the waiter count
310 *
311 * @returns The waiter count
312 * @param pCritSect The Critical section
313 */
314DECLINLINE(int32_t) RTCritSectGetWaiters(PCRTCRITSECT pCritSect)
315{
316 return pCritSect->cLockers;
317}
318
319/* Strict build: Remap the three enter calls to the debug versions. */
320#ifdef RT_STRICT
321# ifdef ___iprt_asm_h
322# define RTCritSectEnter(pCritSect) RTCritSectEnterDebug(pCritSect, (uintptr_t)ASMReturnAddress(), RT_SRC_POS)
323# define RTCritSectTryEnter(pCritSect) RTCritSectTryEnterDebug(pCritSect, (uintptr_t)ASMReturnAddress(), RT_SRC_POS)
324# define RTCritSectEnterMultiple(cCritSects, pCritSect) RTCritSectEnterMultipleDebug((cCritSects), (pCritSect), (uintptr_t)ASMReturnAddress(), RT_SRC_POS)
325# else
326# define RTCritSectEnter(pCritSect) RTCritSectEnterDebug(pCritSect, 0, RT_SRC_POS)
327# define RTCritSectTryEnter(pCritSect) RTCritSectTryEnterDebug(pCritSect, 0, RT_SRC_POS)
328# define RTCritSectEnterMultiple(cCritSects, pCritSect) RTCritSectEnterMultipleDebug((cCritSects), (pCritSect), 0, RT_SRC_POS)
329# endif
330#endif
331
332/** @} */
333
334RT_C_DECLS_END
335
336#endif
337
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette