JUCE-7.0.12-0-g4f43011b96 JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins

« « « Anklang Documentation
Loading...
Searching...
No Matches
Public Member Functions | List of all members
juce::GenericScopedUnlock< LockType > Class Template Reference

Automatically unlocks and re-locks a mutex object. More...

#include "juce_ScopedLock.h"

Public Member Functions

 GenericScopedUnlock (const LockType &lock) noexcept
 Creates a GenericScopedUnlock.
 
 ~GenericScopedUnlock () noexcept
 Destructor.
 

Detailed Description

template<class LockType>
class juce::GenericScopedUnlock< LockType >

Automatically unlocks and re-locks a mutex object.

This is the reverse of a GenericScopedLock object - instead of locking the mutex for the lifetime of this object, it unlocks it.

Make sure you don't try to unlock mutexes that aren't actually locked!

e.g.

for (;;)
{
// myCriticalSection is now locked
... do some stuff with it locked ..
while (xyz)
{
... do some stuff with it locked ..
// myCriticalSection is now unlocked for the remainder of this block,
// and re-locked at the end.
...do some stuff with it unlocked ...
}
// myCriticalSection gets unlocked here.
}
Automatically locks and unlocks a mutex object.
Automatically unlocks and re-locks a mutex object.
Type unalignedPointerCast(void *ptr) noexcept
Casts a pointer to another type via void*, which suppresses the cast-align warning which sometimes ar...
Definition juce_Memory.h:88
See also
GenericScopedLock, CriticalSection, ScopedLock, ScopedUnlock

@tags{Core}

Definition at line 125 of file juce_ScopedLock.h.

Constructor & Destructor Documentation

◆ GenericScopedUnlock()

template<class LockType >
juce::GenericScopedUnlock< LockType >::GenericScopedUnlock ( const LockType &  lock)
explicitnoexcept

Creates a GenericScopedUnlock.

As soon as it is created, this will unlock the CriticalSection, and when the ScopedLock object is deleted, the CriticalSection will be re-locked.

Make sure this object is created and deleted by the same thread, otherwise there are no guarantees what will happen! Best just to use it as a local stack object, rather than creating one with the new() operator.

Definition at line 139 of file juce_ScopedLock.h.

◆ ~GenericScopedUnlock()

template<class LockType >
juce::GenericScopedUnlock< LockType >::~GenericScopedUnlock ( )
noexcept

Destructor.

The CriticalSection will be unlocked when the destructor is called.

Make sure this object is created and deleted by the same thread, otherwise there are no guarantees what will happen!

Definition at line 148 of file juce_ScopedLock.h.


The documentation for this class was generated from the following file: