Blame qtools/qmutex_p.h

Packit 1c1d7e
/****************************************************************************
Packit 1c1d7e
**
Packit 1c1d7e
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
Packit 1c1d7e
** Contact: Nokia Corporation (qt-info@nokia.com)
Packit 1c1d7e
**
Packit 1c1d7e
** This file is part of the QtCore module of the Qt Toolkit.
Packit 1c1d7e
**
Packit 1c1d7e
** $QT_BEGIN_LICENSE:LGPL$
Packit 1c1d7e
** No Commercial Usage
Packit 1c1d7e
** This file contains pre-release code and may not be distributed.
Packit 1c1d7e
** You may use this file in accordance with the terms and conditions
Packit 1c1d7e
** contained in the either Technology Preview License Agreement or the
Packit 1c1d7e
** Beta Release License Agreement.
Packit 1c1d7e
**
Packit 1c1d7e
** GNU Lesser General Public License Usage
Packit 1c1d7e
** Alternatively, this file may be used under the terms of the GNU Lesser
Packit 1c1d7e
** General Public License version 2.1 as published by the Free Software
Packit 1c1d7e
** Foundation and appearing in the file LICENSE.LGPL included in the
Packit 1c1d7e
** packaging of this file.  Please review the following information to
Packit 1c1d7e
** ensure the GNU Lesser General Public License version 2.1 requirements
Packit 1c1d7e
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
Packit 1c1d7e
**
Packit 1c1d7e
** In addition, as a special exception, Nokia gives you certain
Packit 1c1d7e
** additional rights. These rights are described in the Nokia Qt LGPL
Packit 1c1d7e
** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
Packit 1c1d7e
** package.
Packit 1c1d7e
**
Packit 1c1d7e
** GNU General Public License Usage
Packit 1c1d7e
** Alternatively, this file may be used under the terms of the GNU
Packit 1c1d7e
** General Public License version 3.0 as published by the Free Software
Packit 1c1d7e
** Foundation and appearing in the file LICENSE.GPL included in the
Packit 1c1d7e
** packaging of this file.  Please review the following information to
Packit 1c1d7e
** ensure the GNU General Public License version 3.0 requirements will be
Packit 1c1d7e
** met: http://www.gnu.org/copyleft/gpl.html.
Packit 1c1d7e
**
Packit 1c1d7e
** If you are unsure which license is appropriate for your use, please
Packit 1c1d7e
** contact the sales department at http://www.qtsoftware.com/contact.
Packit 1c1d7e
** $QT_END_LICENSE$
Packit 1c1d7e
**
Packit 1c1d7e
****************************************************************************/
Packit 1c1d7e
Packit 1c1d7e
#ifndef QMUTEX_P_H
Packit 1c1d7e
#define QMUTEX_P_H
Packit 1c1d7e
Packit 1c1d7e
#include "qglobal.h"
Packit 1c1d7e
Packit 1c1d7e
#if defined(_OS_UNIX_) || defined(_OS_MAC_)
Packit 1c1d7e
#include <pthread.h>
Packit 1c1d7e
#elif defined(_OS_WIN32_)
Packit 1c1d7e
#include <windows.h>
Packit 1c1d7e
#endif
Packit 1c1d7e
Packit 1c1d7e
class QAtomicInt
Packit 1c1d7e
{
Packit 1c1d7e
  public:
Packit 1c1d7e
    QAtomicInt(int v=0) : m_value(v) {}
Packit 1c1d7e
    bool testAndSet(int expectedValue,int newValue);
Packit 1c1d7e
    int  fetchAndAdd(int valueToAdd);
Packit 1c1d7e
    operator int () const { return m_value; }
Packit 1c1d7e
    bool operator==(int value) const { return m_value == value; }
Packit 1c1d7e
    bool operator!=(int value) const { return m_value != value; }
Packit 1c1d7e
    bool operator!() const { return m_value == 0; }
Packit 1c1d7e
Packit 1c1d7e
  private:
Packit 1c1d7e
    volatile int m_value;
Packit 1c1d7e
};
Packit 1c1d7e
Packit 1c1d7e
class QMutexPrivate
Packit 1c1d7e
{
Packit 1c1d7e
public:
Packit 1c1d7e
    QMutexPrivate();
Packit 1c1d7e
    ~QMutexPrivate();
Packit 1c1d7e
Packit 1c1d7e
    void wait();
Packit 1c1d7e
    void wakeUp();
Packit 1c1d7e
Packit 1c1d7e
    QAtomicInt contenders;
Packit 1c1d7e
Packit 1c1d7e
#if defined(_OS_UNIX_) || defined(_OS_MAC_)
Packit 1c1d7e
    volatile bool wakeup;
Packit 1c1d7e
    pthread_mutex_t mutex;
Packit 1c1d7e
    pthread_cond_t cond;
Packit 1c1d7e
#elif defined(_OS_WIN32_)
Packit 1c1d7e
    HANDLE event;
Packit 1c1d7e
#else
Packit 1c1d7e
#error "unsupported platform"
Packit 1c1d7e
#endif
Packit 1c1d7e
};
Packit 1c1d7e
Packit 1c1d7e
#endif // QMUTEX_P_H