Panda3D
Public Member Functions

ReMutex Class Reference

Inheritance diagram for ReMutex:
ReMutexDirect

List of all members.

Public Member Functions

 ReMutex ()
 ReMutex (string name)
 acquire (Thread current_thread)
 This variant on acquire() accepts the current thread as a parameter, if it is already known, as an optimization.
 acquire ()
 Grabs the reMutex if it is available.
 clearName ()
 The mutex name is only defined when compiling in DEBUG_THREADS mode.
bool debugIsLocked ()
 Returns true if the current thread has locked the ReMutex, false otherwise.
 elevateLock ()
 This method increments the lock count, assuming the calling thread already holds the lock.
string getName ()
 The mutex name is only defined when compiling in DEBUG_THREADS mode.
bool hasName ()
 The mutex name is only defined when compiling in DEBUG_THREADS mode.
 output (ostream out)
 This method is declared virtual in MutexDebug, but non-virtual in ReMutexDirect.
 release ()
 Releases the reMutex.
 setName (string name)
 The mutex name is only defined when compiling in DEBUG_THREADS mode.
bool tryAcquire ()
 Returns immediately, with a true value indicating the mutex has been acquired, and false indicating it has not.
bool tryAcquire (Thread current_thread)
 Returns immediately, with a true value indicating the mutex has been acquired, and false indicating it has not.

Constructor & Destructor Documentation

ReMutex ( )
ReMutex ( string  name)

Member Function Documentation

acquire ( ) [inherited]

Grabs the reMutex if it is available.

If it is not available, blocks until it becomes available, then grabs it. In either case, the function does not return until the reMutex is held; you should then call unlock().

This method is considered const so that you can lock and unlock const reMutexes, mainly to allow thread-safe access to otherwise const data.

Also see ReMutexHolder.

acquire ( Thread  current_thread) [inherited]

This variant on acquire() accepts the current thread as a parameter, if it is already known, as an optimization.

clearName ( ) [inherited]

The mutex name is only defined when compiling in DEBUG_THREADS mode.

bool debugIsLocked ( ) [inherited]

Returns true if the current thread has locked the ReMutex, false otherwise.

This method is only intended for use in debugging, hence the method name; in the ReMutexDirect case, it always returns true, since there's not a reliable way to determine this otherwise.

elevateLock ( ) [inherited]

This method increments the lock count, assuming the calling thread already holds the lock.

After this call, release() will need to be called one additional time to release the lock.

This method really performs the same function as acquire(), but it offers a potential (slight) performance benefit when the calling thread knows that it already holds the lock. It is an error to call this when the calling thread does not hold the lock.

string getName ( ) [inherited]

The mutex name is only defined when compiling in DEBUG_THREADS mode.

bool hasName ( ) [inherited]

The mutex name is only defined when compiling in DEBUG_THREADS mode.

output ( ostream  out) [inherited]

This method is declared virtual in MutexDebug, but non-virtual in ReMutexDirect.

release ( ) [inherited]

Releases the reMutex.

It is an error to call this if the reMutex was not already locked.

This method is considered const so that you can lock and unlock const reMutexes, mainly to allow thread-safe access to otherwise const data.

setName ( string  name) [inherited]

The mutex name is only defined when compiling in DEBUG_THREADS mode.

bool tryAcquire ( ) [inherited]

Returns immediately, with a true value indicating the mutex has been acquired, and false indicating it has not.

bool tryAcquire ( Thread  current_thread) [inherited]

Returns immediately, with a true value indicating the mutex has been acquired, and false indicating it has not.

 All Classes Namespaces Functions Variables Enumerations Enumerator Properties