VMutex Class Reference

#include <VMutex.hpp>

List of all members.


Public Member Functions

 VMutex ()
 Creates a mutex variable.
 VMutex (char *name)
 Creates and initializes mutex variable with name.
void initialize (char *name)
 Initialize mutex variable.
void lock ()
 Wait for lock on mutex variable.
void tryLock ()
 Try to get lock on mutex variable (if locked, return immediately).
void release ()
 Release lock on mutex variable.
void destroy ()
 Destroy lock object.
pthread_mutex_t * getMutexObject ()
 Return internally used mutex variable.

Detailed Description

Author:
Klaus Schoeffmann

Definition at line 59 of file VMutex.hpp.


Constructor & Destructor Documentation

VMutex::VMutex char *  name  ) 
 

Creates and initializes mutex variable with name.

Parameters:
name 
Definition at line 59 of file VMutex.cpp.

References initialize().

00060 { 00061 initialize(name); 00062 }


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