3 //==========================================================================
5 * @file Recursive_Thread_Mutex.h
9 * @author Douglas C. Schmidt <d.schmidt@vanderbilt.edu> and
10 * Abdullah Sowayan <abdullah.sowayan@lmco.com>
12 //==========================================================================
14 #ifndef ACE_RECURSIVE_THREAD_MUTEX_H
15 #define ACE_RECURSIVE_THREAD_MUTEX_H
16 #include /**/ "ace/pre.h"
18 #include /**/ "ace/ACE_export.h"
20 #if !defined (ACE_LACKS_PRAGMA_ONCE)
22 #endif /* ACE_LACKS_PRAGMA_ONCE */
24 #if !defined (ACE_HAS_THREADS)
25 # include "ace/Null_Mutex.h"
26 #else /* ACE_HAS_THREADS */
27 // ACE platform supports some form of threading.
29 #include "ace/OS_NS_Thread.h"
31 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
34 * @class ACE_Recursive_Thread_Mutex
36 * @brief Implement a C++ wrapper that allows nested acquisition and
37 * release of a mutex that occurs in the same thread.
39 class ACE_Export ACE_Recursive_Thread_Mutex
42 /// Initialize a recursive mutex.
43 ACE_Recursive_Thread_Mutex (const ACE_TCHAR
*name
= 0,
44 ACE_mutexattr_t
*arg
= 0);
46 /// Implicitly release a recursive mutex.
47 ~ACE_Recursive_Thread_Mutex ();
50 * Implicitly release a recursive mutex. Note that only one thread
51 * should call this method since it doesn't protect against race
57 * Acquire a recursive mutex (will increment the nesting level and
58 * not deadmutex if the owner of the mutex calls this method more
64 * Block the thread until we acquire the mutex or until @a tv times
65 * out, in which case -1 is returned with @c errno == @c ETIME. Note
66 * that @a tv is assumed to be in "absolute" rather than "relative"
67 * time. The value of @a tv is updated upon return to show the
68 * actual (absolute) acquisition time.
70 int acquire (ACE_Time_Value
&tv
);
73 * If @a tv == 0 the call acquire() directly. Otherwise, Block the
74 * thread until we acquire the mutex or until @a tv times out, in
75 * which case -1 is returned with @c errno == @c ETIME. Note that
76 * <*tv> is assumed to be in "absolute" rather than "relative" time.
77 * The value of <*tv> is updated upon return to show the actual
78 * (absolute) acquisition time.
80 int acquire (ACE_Time_Value
*tv
);
83 * Conditionally acquire a recursive mutex (i.e., won't block).
84 * Returns -1 on failure. If we "failed" because someone else
85 * already had the lock, @c errno is set to @c EBUSY.
90 * Acquire mutex ownership. This calls acquire() and is only
91 * here to make the ACE_Recusive_Thread_Mutex interface consistent
92 * with the other synchronization APIs.
97 * Acquire mutex ownership. This calls acquire() and is only
98 * here to make the ACE_Recusive_Thread_Mutex interface consistent
99 * with the other synchronization APIs.
101 int acquire_write ();
104 * Conditionally acquire mutex (i.e., won't block). This calls
105 * tryacquire() and is only here to make the
106 * ACE_Recusive_Thread_Mutex interface consistent with the other
107 * synchronization APIs. Returns -1 on failure. If we "failed"
108 * because someone else already had the lock, @c errno is set to
111 int tryacquire_read ();
114 * Conditionally acquire mutex (i.e., won't block). This calls
115 * tryacquire() and is only here to make the
116 * ACE_Recusive_Thread_Mutex interface consistent with the other
117 * synchronization APIs. Returns -1 on failure. If we "failed"
118 * because someone else already had the lock, @c errno is set to
121 int tryacquire_write ();
124 * This is only here to make the ACE_Recursive_Thread_Mutex
125 * interface consistent with the other synchronization APIs.
126 * Assumes the caller has already acquired the mutex using one of
127 * the above calls, and returns 0 (success) always.
129 int tryacquire_write_upgrade ();
132 * Releases a recursive mutex (will not release mutex until all the
133 * nesting level drops to 0, which means the mutex is no longer
138 /// Return the id of the thread that currently owns the mutex.
139 ACE_thread_t
get_thread_id ();
142 * Return the nesting level of the recursion. When a thread has
143 * acquired the mutex for the first time, the nesting level == 1.
144 * The nesting level is incremented every time the thread acquires
145 * the mutex recursively. Note that if the ACE_HAS_RECURSIVE_MUTEXES
146 * macro is enabled then this method may return -1 on platforms that
147 * do not expose the internal count.
149 int get_nesting_level ();
151 /// Returns a reference to the recursive mutex;
152 ACE_recursive_thread_mutex_t
&lock ();
154 /// Returns a reference to the recursive mutex's internal mutex;
155 ACE_thread_mutex_t
&get_nesting_mutex ();
157 /// Dump the state of an object.
160 /// Declare the dynamic allocation hooks.
161 ACE_ALLOC_HOOK_DECLARE
;
164 // = This method should *not* be public (they hold no locks...)
165 void set_thread_id (ACE_thread_t t
);
168 ACE_recursive_thread_mutex_t lock_
;
170 /// Keeps track of whether remove() has been called yet to avoid
171 /// multiple remove() calls, e.g., explicitly and implicitly in the
172 /// destructor. This flag isn't protected by a lock, so make sure
173 /// that you don't have multiple threads simultaneously calling
174 /// remove() on the same object, which is a bad idea anyway...
178 // = Prevent assignment and initialization.
179 void operator= (const ACE_Recursive_Thread_Mutex
&);
180 ACE_Recursive_Thread_Mutex (const ACE_Recursive_Thread_Mutex
&);
183 ACE_END_VERSIONED_NAMESPACE_DECL
185 #if defined (__ACE_INLINE__)
186 #include "ace/Recursive_Thread_Mutex.inl"
187 #endif /* __ACE_INLINE__ */
189 #endif /* !ACE_HAS_THREADS */
191 #include /**/ "ace/post.h"
192 #endif /* ACE_RECURSIVE_THREAD_MUTEX_H */