2015-04-07 12:13:12 +02:00
|
|
|
/*
|
|
|
|
This file is a part of the JThread package, which contains some object-
|
|
|
|
oriented thread wrappers for different thread implementations.
|
|
|
|
|
|
|
|
Copyright (c) 2000-2006 Jori Liesenborgs (jori.liesenborgs@gmail.com)
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
copy of this software and associated documentation files (the "Software"),
|
|
|
|
to deal in the Software without restriction, including without limitation
|
|
|
|
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
Software is furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef THREADING_MUTEX_H
|
|
|
|
#define THREADING_MUTEX_H
|
|
|
|
|
2016-10-06 21:13:04 +02:00
|
|
|
#include "threads.h"
|
|
|
|
|
|
|
|
#if USE_CPP11_MUTEX
|
2015-04-07 12:13:12 +02:00
|
|
|
#include <mutex>
|
|
|
|
using Mutex = std::mutex;
|
2016-01-23 05:45:00 +01:00
|
|
|
using RecursiveMutex = std::recursive_mutex;
|
2015-04-07 12:13:12 +02:00
|
|
|
#else
|
|
|
|
|
2016-10-06 21:13:04 +02:00
|
|
|
#if USE_WIN_MUTEX
|
2015-04-07 12:13:12 +02:00
|
|
|
#ifndef _WIN32_WINNT
|
|
|
|
#define _WIN32_WINNT 0x0501
|
|
|
|
#endif
|
|
|
|
#ifndef WIN32_LEAN_AND_MEAN
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#endif
|
|
|
|
#include <windows.h>
|
2016-10-06 21:13:04 +02:00
|
|
|
#else
|
2015-04-07 12:13:12 +02:00
|
|
|
#include <pthread.h>
|
|
|
|
#endif
|
|
|
|
|
2015-10-31 03:06:36 +01:00
|
|
|
#include "util/basic_macros.h"
|
2015-04-07 12:13:12 +02:00
|
|
|
|
|
|
|
class Mutex
|
|
|
|
{
|
|
|
|
public:
|
2016-01-23 05:45:00 +01:00
|
|
|
Mutex();
|
2015-04-07 12:13:12 +02:00
|
|
|
~Mutex();
|
|
|
|
void lock();
|
|
|
|
void unlock();
|
|
|
|
|
2016-01-23 05:45:00 +01:00
|
|
|
protected:
|
|
|
|
Mutex(bool recursive);
|
|
|
|
void init_mutex(bool recursive);
|
2015-04-07 12:13:12 +02:00
|
|
|
private:
|
2016-10-06 21:13:04 +02:00
|
|
|
#if USE_WIN_MUTEX
|
2015-04-07 12:13:12 +02:00
|
|
|
CRITICAL_SECTION mutex;
|
2016-10-06 21:13:04 +02:00
|
|
|
#else
|
2015-04-07 12:13:12 +02:00
|
|
|
pthread_mutex_t mutex;
|
|
|
|
#endif
|
2015-10-27 07:51:43 +01:00
|
|
|
|
|
|
|
DISABLE_CLASS_COPY(Mutex);
|
2015-04-07 12:13:12 +02:00
|
|
|
};
|
|
|
|
|
2016-01-23 05:45:00 +01:00
|
|
|
class RecursiveMutex : public Mutex
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RecursiveMutex();
|
|
|
|
|
|
|
|
DISABLE_CLASS_COPY(RecursiveMutex);
|
|
|
|
};
|
|
|
|
|
2016-10-06 21:13:04 +02:00
|
|
|
#endif // C++11
|
2015-04-07 12:13:12 +02:00
|
|
|
|
|
|
|
#endif
|