|
LibreOffice
LibreOffice 7.6 SDK C/C++ API Reference
|
Go to the documentation of this file.
24 #ifndef INCLUDED_OSL_MUTEX_HXX
25 #define INCLUDED_OSL_MUTEX_HXX
197 #ifdef LIBO_INTERNAL_ONLY
244 #ifdef LIBO_INTERNAL_ONLY
260 #endif // INCLUDED_OSL_MUTEX_HXX
bool tryToAcquire()
Try to acquire the mutex without blocking.
Definition: mutex.hxx:70
SAL_DLLPUBLIC sal_Bool osl_releaseMutex(oslMutex Mutex)
Release the mutex.
ResettableGuard(T *pT_)
Acquires the object specified as parameter.
Definition: mutex.hxx:228
Guard(T *pT_)
Acquires the object specified as parameter.
Definition: mutex.hxx:134
ClearableGuard(T *pT_)
Acquires the object specified as parameter.
Definition: mutex.hxx:172
Definition: condition.hxx:31
Mutex()
Create a mutex.
Definition: mutex.hxx:44
SAL_DLLPUBLIC sal_Bool osl_tryToAcquireMutex(oslMutex Mutex)
Try to acquire the mutex without blocking.
Object lifetime scoped mutex object or interface lock with unlock.
Definition: mutex.hxx:162
~Guard()
Releases the mutex or interface.
Definition: mutex.hxx:148
#define SAL_WARN_UNUSED
Annotate classes where a compiler should warn if an instance is unused.
Definition: types.h:587
void clear()
Releases the mutex or interface.
Definition: mutex.hxx:195
Guard< Mutex > MutexGuard
Definition: mutex.hxx:255
SAL_DLLPUBLIC oslMutex * osl_getGlobalMutex(void)
Returns a unique and global mutex.
void reset()
Re-acquires the mutex or interface.
Definition: mutex.hxx:242
ClearableGuard(T &t)
Acquires the object specified as parameter.
Definition: mutex.hxx:180
Object lifetime scoped mutex object or interface lock.
Definition: mutex.hxx:124
Guard(T &t)
Acquires the object specified as parameter.
Definition: mutex.hxx:142
ClearableGuard< Mutex > ClearableMutexGuard
Definition: mutex.hxx:256
T * pResetT
Definition: mutex.hxx:223
SAL_DLLPUBLIC oslMutex osl_createMutex(void)
Create a mutex.
static Mutex * getGlobalMutex()
Returns a global static mutex object.
Definition: mutex.hxx:90
Template for temporary releasable mutex objects and interfaces locks.
Definition: mutex.hxx:218
struct _oslMutexImpl * oslMutex
Definition: mutex.h:37
A mutual exclusion synchronization object.
Definition: mutex.hxx:35
T * pT
Definition: mutex.hxx:129
bool release()
Release the mutex.
Definition: mutex.hxx:79
#define SAL_DELETED_FUNCTION
short-circuit extra-verbose API namespaces
Definition: types.h:378
~ClearableGuard()
Releases the mutex or interface if not already released by clear().
Definition: mutex.hxx:187
ResettableGuard(T &rT)
Acquires the object specified as parameter.
Definition: mutex.hxx:235
SAL_DLLPUBLIC sal_Bool osl_acquireMutex(oslMutex Mutex)
Acquire the mutex, block if already acquired by another thread.
bool acquire()
Acquire the mutex, block if already acquired by another thread.
Definition: mutex.hxx:61
SAL_DLLPUBLIC void osl_destroyMutex(oslMutex Mutex)
Release the OS-structures and free mutex data-structure.
T * pT
Definition: mutex.hxx:167
ResettableGuard< Mutex > ResettableMutexGuard
Definition: mutex.hxx:257
~Mutex()
Release the OS-structures and free mutex data-structure.
Definition: mutex.hxx:52