added santiy checks to mutexes
[physics.git] / src / locks / Mutex.h
CommitLineData
3bccd1d7
PG
1/*
2 * Copyright (C) 2008 Patrik Gornicz, Gornicz_P (at) hotmail (dot) com.
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
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 for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18
19#ifndef MUTEX_H
20#define MUTEX_H
21
22/// ***** Header Class *****
23
24class SDL_mutex;
25
26class Mutex
27{
28public:
29 Mutex();
30 ~Mutex();
31
32 void init();
33 void clean();
34
35 bool IsValid();
36
37 void Lock();
38 void Unlock();
39
40// hide copying methods!
41private:
42 Mutex(const Mutex&);
43 const Mutex& operator ==(const Mutex&);
44
45private:
002fd13c
PG
46 SDL_mutex* m_pSDL_mutex;
47 unsigned int m_uiThreadID;
3bccd1d7
PG
48};
49
50#endif // MUTEX_H