00001 /****************************************************************************** 00002 * __ _ _ _ _ _ _____ * 00003 * | \ / | | | | | | | | | | ___| * 00004 * | \/ | | | | | | | | | | |_ * 00005 * | | | | | | | | | | | _| * 00006 * | |\/| | | | | |__ | |__ | | | |__ * 00007 * |_| |_| |_| |____| |____| |_| |____| * 00008 * __________________________________________________________________________ * 00009 * Multifunctional Library For Image Processing * 00010 * * 00011 * * 00012 * * 00013 * (c) Copyright 2007 by Humbert Florent * 00014 * * 00015 * This program is free software; you can redistribute it and/or modify * 00016 * it under the terms of the GNU General Public License as published by * 00017 * the Free Software Foundation; only version 2 of the License. * 00018 * * 00019 * This program is distributed in the hope that it will be useful, * 00020 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00021 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00022 * GNU General Public License for more details. * 00023 * * 00024 * You should have received a copy of the GNU General Public License * 00025 * along with this program; if not, write to the Free Software * 00026 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 00027 * 02111-1307, USA. * 00028 ******************************************************************************/ 00029 00032 #include <cstdio> 00033 00034 #include "Mutex.hpp" 00035 00036 00037 00038 using namespace Millie; 00039 00040 00046 Mutex::Mutex() 00047 { 00048 _isLocked = false; 00049 pthread_mutex_init(&_lock, NULL); 00050 00051 if(pthread_mutex_init(&_mutex, NULL) != 0) 00052 throw MutexException("Mutex creation failed"); 00053 00054 } 00055 00056 void Mutex::lock() 00057 { 00058 00059 if(pthread_mutex_lock(&_mutex) != 0) 00060 { 00061 //perror("pthread_mutex_lock"); 00062 // throw MutexException("Mutex lock failed"); 00063 } 00064 } 00065 00066 void Mutex::unlock() 00067 { 00068 if(pthread_mutex_unlock(&_mutex) != 0) 00069 { 00070 //perror("pthread_mutex_unlock"); 00071 // throw MutexException("Mutex Unlock Failed"); 00072 } 00073 } 00074 00075 Mutex::~Mutex() 00076 { 00077 pthread_mutex_destroy(&_mutex); 00078 } 00079 00080 00085 MutexLock::MutexLock(Mutex & mutex) 00086 { 00087 _mutex = &mutex; 00088 _mutex->lock() 00089 ; 00090 } 00091 00092 void MutexLock::unlock() 00093 { 00094 _mutex->unlock(); 00095 } 00096 00097 MutexLock::~MutexLock() 00098 { 00099 _mutex->unlock(); 00100 }