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/Source/Semaphore.h>
00032 #include <VimbaCPP/Include/LoggerDefines.h>
00033
00034 namespace AVT {
00035 namespace VmbAPI {
00036
00037 Semaphore::Semaphore( int nInit, int nMax )
00038 #ifdef WIN32
00039 : m_hSemaphore( NULL )
00040 #endif
00041 {
00042 #ifdef WIN32
00043 m_hSemaphore = CreateSemaphore( NULL, nInit, nMax, NULL );
00044 if( NULL == m_hSemaphore )
00045 {
00046 LOG_FREE_TEXT( "Could not create semaphore." );
00047 throw std::bad_alloc();
00048 }
00049 #else
00050 sem_init( &m_Semaphore, false, (unsigned int)nInit );
00051 #endif
00052 }
00053
00054 Semaphore::Semaphore( const Semaphore& )
00055 {
00056
00057 }
00058
00059 Semaphore& Semaphore::operator=( const Semaphore& )
00060 {
00061
00062 return *this;
00063 }
00064
00065 Semaphore::~Semaphore()
00066 {
00067 #ifdef WIN32
00068 CloseHandle( m_hSemaphore );
00069 #else
00070 sem_destroy( &m_Semaphore );
00071 #endif
00072 }
00073
00074 void Semaphore::Acquire()
00075 {
00076 #ifdef WIN32
00077 WaitForSingleObject( m_hSemaphore, INFINITE );
00078 #else
00079 sem_wait( &m_Semaphore );
00080 #endif
00081 }
00082
00083 void Semaphore::Release()
00084 {
00085 #ifdef WIN32
00086 ReleaseSemaphore( m_hSemaphore, 1, NULL );
00087 #else
00088 sem_post( &m_Semaphore );
00089 #endif
00090 }
00091
00092 }
00093 }