Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #include <math.h>
00030
00031 #include <VimbaCPP/Include/Mutex.h>
00032 #include <VimbaCPP/Include/LoggerDefines.h>
00033
00034 namespace AVT {
00035 namespace VmbAPI {
00036
00037 Mutex::Mutex( bool bInitLock )
00038 #ifdef WIN32
00039 : m_hMutex( NULL )
00040 #endif
00041 {
00042 #ifdef WIN32
00043 m_hMutex = CreateMutex( NULL, FALSE, NULL );
00044 if( NULL == m_hMutex )
00045 {
00046 LOG_FREE_TEXT( "Could not create mutex." );
00047 throw std::bad_alloc();
00048 }
00049 #else
00050 pthread_mutex_init(&m_Mutex, NULL);
00051 #endif
00052
00053 if( true == bInitLock )
00054 {
00055 Lock();
00056 }
00057 }
00058
00059 Mutex::~Mutex()
00060 {
00061 #ifdef WIN32
00062 CloseHandle( m_hMutex );
00063 #else
00064 pthread_mutex_destroy(&m_Mutex);
00065 #endif
00066 }
00067
00068 Mutex::Mutex( const Mutex& )
00069 {
00070
00071 }
00072
00073 Mutex& Mutex::operator=( const Mutex& )
00074 {
00075
00076 return *this;
00077 }
00078
00079 void Mutex::Lock()
00080 {
00081 #ifdef WIN32
00082 WaitForSingleObject( m_hMutex, INFINITE );
00083 #else
00084 pthread_mutex_lock( &m_Mutex );
00085 #endif
00086 }
00087
00088 void Mutex::Unlock()
00089 {
00090 #ifdef WIN32
00091 ReleaseMutex( m_hMutex );
00092 #else
00093 pthread_mutex_unlock( &m_Mutex );
00094 #endif
00095 }
00096
00097 }}