|
Mixe for Privacy and Anonymity in the Internet
|
00001 /* 00002 Copyright (c) 2000, The JAP-Team 00003 All rights reserved. 00004 Redistribution and use in source and binary forms, with or without modification, 00005 are permitted provided that the following conditions are met: 00006 00007 - Redistributions of source code must retain the above copyright notice, 00008 this list of conditions and the following disclaimer. 00009 00010 - Redistributions in binary form must reproduce the above copyright notice, 00011 this list of conditions and the following disclaimer in the documentation and/or 00012 other materials provided with the distribution. 00013 00014 - Neither the name of the University of Technology Dresden, Germany nor the names of its contributors 00015 may be used to endorse or promote products derived from this software without specific 00016 prior written permission. 00017 00018 00019 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS 00020 OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY 00021 AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS 00022 BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 00023 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, 00024 OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER 00025 IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 00026 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE 00027 */ 00028 #ifndef __CAMUTEX__ 00029 #define __CAMUTEX__ 00030 class CAConditionVariable; 00031 #ifndef HAVE_PTHREAD_MUTEXES 00032 #include "CASemaphore.hpp" 00033 #endif 00034 00035 class CAMutex 00036 { 00037 public: 00038 CAMutex(); 00039 virtual ~CAMutex(); 00040 00041 SINT32 lock() 00042 { 00043 #ifdef HAVE_PTHREAD_MUTEXES 00044 if(pthread_mutex_lock(m_pMutex)==0) 00045 return E_SUCCESS; 00046 return E_UNKNOWN; 00047 #else 00048 return m_pMutex->down(); 00049 #endif 00050 } 00051 00052 SINT32 unlock() 00053 { 00054 #ifdef HAVE_PTHREAD_MUTEXES 00055 if(pthread_mutex_unlock(m_pMutex)==0) 00056 return E_SUCCESS; 00057 return E_UNKNOWN; 00058 #else 00059 return m_pMutex->up(); 00060 #endif 00061 } 00062 00063 friend class CAConditionVariable; 00064 protected: 00065 #ifdef HAVE_PTHREAD_MUTEXES 00066 pthread_mutex_t* m_pMutex; 00067 //pthread_mutexattr_t* m_pMutexAttributes; 00068 #else 00069 CASemaphore* m_pMutex; 00070 #endif 00071 }; 00072 #endif
1.7.6.1