2011-01-15 21:06:28 +00:00
|
|
|
/**
|
|
|
|
* \file mutex.cpp
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Peter Kümmel
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2018-01-08 10:19:15 +00:00
|
|
|
#include "support/mutex.h"
|
2011-01-15 21:06:28 +00:00
|
|
|
|
|
|
|
#include <QMutex>
|
|
|
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
|
|
|
struct Mutex::Private
|
|
|
|
{
|
|
|
|
// QMutex::Recursive: less risks for dead-locks
|
|
|
|
Private() : qmutex_(QMutex::Recursive)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
QMutex qmutex_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Mutex::Mutex() : d(new Private)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Mutex::~Mutex()
|
|
|
|
{
|
|
|
|
delete d;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Mutex::Locker::Locker(Mutex* mtx) : mutex_(mtx)
|
|
|
|
{
|
|
|
|
mutex_->d->qmutex_.lock();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Mutex::Locker::~Locker()
|
|
|
|
{
|
|
|
|
mutex_->d->qmutex_.unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|