KINECT STATS GENERATOR FOR SPORTS VISUALISATION  1.0
Mutex Class Reference

#include <Mutex.h>

List of all members.

Public Member Functions

 Mutex ()
void lock ()
void unlock ()

Private Attributes

pthread_mutex_t m_mutex

Detailed Description

Definition at line 5 of file Mutex.h.


Constructor & Destructor Documentation

Mutex::Mutex ( ) [inline]

Definition at line 8 of file Mutex.h.

References m_mutex.

          {
    pthread_mutex_init( &m_mutex, NULL );
  }

Member Function Documentation

void Mutex::lock ( ) [inline]

Definition at line 11 of file Mutex.h.

References m_mutex.

              {
    pthread_mutex_lock( &m_mutex );
  }

+ Here is the caller graph for this function:

void Mutex::unlock ( ) [inline]

Definition at line 14 of file Mutex.h.

References m_mutex.

                {
    pthread_mutex_unlock( &m_mutex );
  }

+ Here is the caller graph for this function:


Member Data Documentation

pthread_mutex_t Mutex::m_mutex [private]

Definition at line 18 of file Mutex.h.


The documentation for this class was generated from the following file:
 All Classes Files Functions Variables Enumerations Enumerator