Mutex.h (1072B)
1 /* 2 Copyright (C) 2006-2011 Nasca Octavian Paul 3 Author: Nasca Octavian Paul 4 5 This program is free software; you can redistribute it and/or modify 6 it under the terms of version 2 of the GNU General Public License 7 as published by the Free Software Foundation. 8 9 This program is distributed in the hope that it will be useful, 10 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 GNU General Public License (version 2) for more details. 13 14 You should have received a copy of the GNU General Public License (version 2) 15 along with this program; if not, write to the Free Software Foundation, 16 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 17 */ 18 #ifndef MUTEX_H 19 #define MUTEX_H 20 21 #ifdef WINDOWS 22 #include <windows.h> 23 #include <winbase.h> 24 #else 25 #include <pthread.h> 26 #endif 27 28 class Mutex{ 29 public: 30 Mutex(); 31 ~Mutex(); 32 void lock(); 33 void unlock(); 34 private: 35 #ifdef WINDOWS 36 CRITICAL_SECTION mutex; 37 #else 38 pthread_mutex_t mutex; 39 #endif 40 }; 41 42 43 #endif 44