155 lines
4.9 KiB
C++
155 lines
4.9 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
** Copyright (C) 2016 Intel Corporation.
|
|
** Copyright (C) 2012 Olivier Goffart <ogoffart@woboq.com>
|
|
** Contact: https://www.qt.io/licensing/
|
|
**
|
|
** This file is part of the QtCore module of the Qt Toolkit.
|
|
**
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
|
** Commercial License Usage
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
** accordance with the commercial license agreement provided with the
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
**
|
|
** GNU Lesser General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
** General Public License version 3 as published by the Free Software
|
|
** Foundation and appearing in the file LICENSE.LGPL3 included in the
|
|
** packaging of this file. Please review the following information to
|
|
** ensure the GNU Lesser General Public License version 3 requirements
|
|
** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
|
|
**
|
|
** GNU General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
** General Public License version 2.0 or (at your option) the GNU General
|
|
** Public license version 3 or any later version approved by the KDE Free
|
|
** Qt Foundation. The licenses are as published by the Free Software
|
|
** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
|
|
** included in the packaging of this file. Please review the following
|
|
** information to ensure the GNU General Public License requirements will
|
|
** be met: https://www.gnu.org/licenses/gpl-2.0.html and
|
|
** https://www.gnu.org/licenses/gpl-3.0.html.
|
|
**
|
|
** $QT_END_LICENSE$
|
|
**
|
|
****************************************************************************/
|
|
|
|
#ifndef QMUTEX_P_H
|
|
#define QMUTEX_P_H
|
|
|
|
//
|
|
// W A R N I N G
|
|
// -------------
|
|
//
|
|
// This file is not part of the Qt API. It exists for the convenience
|
|
// of qmutex.cpp, qmutex_unix.cpp, and qmutex_win.cpp. This header
|
|
// file may change from version to version without notice, or even be
|
|
// removed.
|
|
//
|
|
// We mean it.
|
|
//
|
|
|
|
#include <QtCore/private/qglobal_p.h>
|
|
#include <QtCore/qnamespace.h>
|
|
#include <QtCore/qmutex.h>
|
|
#include <QtCore/qatomic.h>
|
|
|
|
#if defined(Q_OS_MAC)
|
|
# include <mach/semaphore.h>
|
|
#elif defined(Q_OS_LINUX) && !defined(QT_LINUXBASE)
|
|
// use Linux mutexes everywhere except for LSB builds
|
|
# define QT_LINUX_FUTEX
|
|
#elif defined(Q_OS_UNIX)
|
|
# if _POSIX_VERSION-0 >= 200112L || _XOPEN_VERSION-0 >= 600
|
|
# include <semaphore.h>
|
|
# define QT_UNIX_SEMAPHORE
|
|
# endif
|
|
#endif
|
|
|
|
struct timespec;
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QMutexData
|
|
{
|
|
public:
|
|
bool recursive;
|
|
QMutexData(QMutex::RecursionMode mode = QMutex::NonRecursive)
|
|
: recursive(mode == QMutex::Recursive) {}
|
|
};
|
|
|
|
#if !defined(QT_LINUX_FUTEX)
|
|
class QMutexPrivate : public QMutexData
|
|
{
|
|
public:
|
|
~QMutexPrivate();
|
|
QMutexPrivate();
|
|
|
|
bool wait(int timeout = -1);
|
|
void wakeUp() Q_DECL_NOTHROW;
|
|
|
|
// Control the lifetime of the privates
|
|
QAtomicInt refCount;
|
|
int id;
|
|
|
|
bool ref() {
|
|
Q_ASSERT(refCount.load() >= 0);
|
|
int c;
|
|
do {
|
|
c = refCount.load();
|
|
if (c == 0)
|
|
return false;
|
|
} while (!refCount.testAndSetRelaxed(c, c + 1));
|
|
Q_ASSERT(refCount.load() >= 0);
|
|
return true;
|
|
}
|
|
void deref() {
|
|
Q_ASSERT(refCount.load() >= 0);
|
|
if (!refCount.deref())
|
|
release();
|
|
Q_ASSERT(refCount.load() >= 0);
|
|
}
|
|
void release();
|
|
static QMutexPrivate *allocate();
|
|
|
|
QAtomicInt waiters; // Number of threads waiting on this mutex. (may be offset by -BigNumber)
|
|
QAtomicInt possiblyUnlocked; /* Boolean indicating that a timed wait timed out.
|
|
When it is true, a reference is held.
|
|
It is there to avoid a race that happens if unlock happens right
|
|
when the mutex is unlocked.
|
|
*/
|
|
enum { BigNumber = 0x100000 }; //Must be bigger than the possible number of waiters (number of threads)
|
|
void derefWaiters(int value) Q_DECL_NOTHROW;
|
|
|
|
//platform specific stuff
|
|
#if defined(Q_OS_MAC)
|
|
semaphore_t mach_semaphore;
|
|
#elif defined(QT_UNIX_SEMAPHORE)
|
|
sem_t semaphore;
|
|
#elif defined(Q_OS_UNIX)
|
|
bool wakeup;
|
|
pthread_mutex_t mutex;
|
|
pthread_cond_t cond;
|
|
#elif defined(Q_OS_WIN)
|
|
Qt::HANDLE event;
|
|
#endif
|
|
};
|
|
#endif //QT_LINUX_FUTEX
|
|
|
|
|
|
#ifdef Q_OS_UNIX
|
|
// helper functions for qmutex_unix.cpp and qwaitcondition_unix.cpp
|
|
// they are in qwaitcondition_unix.cpp actually
|
|
void qt_initialize_pthread_cond(pthread_cond_t *cond, const char *where);
|
|
void qt_abstime_for_timeout(struct timespec *ts, int timeout);
|
|
#endif
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif // QMUTEX_P_H
|