2012-04-23 03:14:34 +02:00
|
|
|
//
|
|
|
|
// Mutex_WIN32.h
|
|
|
|
//
|
|
|
|
// $Id: //poco/1.4/Foundation/include/Poco/Mutex_WINCE.h#1 $
|
|
|
|
//
|
|
|
|
// Library: Foundation
|
|
|
|
// Package: Threading
|
|
|
|
// Module: Mutex
|
|
|
|
//
|
|
|
|
// Definition of the MutexImpl and FastMutexImpl classes for WIN32.
|
|
|
|
//
|
|
|
|
// Copyright (c) 2004-2010, Applied Informatics Software Engineering GmbH.
|
|
|
|
// and Contributors.
|
|
|
|
//
|
2014-05-04 21:02:42 +02:00
|
|
|
// SPDX-License-Identifier: BSL-1.0
|
2012-04-23 03:14:34 +02:00
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef Foundation_Mutex_WINCE_INCLUDED
|
|
|
|
#define Foundation_Mutex_WINCE_INCLUDED
|
|
|
|
|
|
|
|
|
|
|
|
#include "Poco/Foundation.h"
|
|
|
|
#include "Poco/Exception.h"
|
|
|
|
#include "Poco/UnWindows.h"
|
|
|
|
|
|
|
|
|
|
|
|
namespace Poco {
|
|
|
|
|
|
|
|
|
|
|
|
class Foundation_API MutexImpl
|
|
|
|
{
|
2015-01-14 11:48:22 +01:00
|
|
|
public:
|
|
|
|
enum MutexTypeImpl
|
|
|
|
{
|
|
|
|
MUTEX_RECURSIVE_IMPL,
|
|
|
|
MUTEX_NONRECURSIVE_IMPL,
|
|
|
|
};
|
|
|
|
|
2012-04-23 03:14:34 +02:00
|
|
|
protected:
|
2015-01-14 11:48:22 +01:00
|
|
|
explicit MutexImpl(MutexTypeImpl type);
|
2012-04-23 03:14:34 +02:00
|
|
|
~MutexImpl();
|
|
|
|
void lockImpl();
|
|
|
|
bool tryLockImpl();
|
|
|
|
bool tryLockImpl(long milliseconds);
|
|
|
|
void unlockImpl();
|
|
|
|
|
|
|
|
private:
|
|
|
|
HANDLE _mutex;
|
2014-10-30 12:10:39 +01:00
|
|
|
int _lockCount;
|
|
|
|
const bool _recursive;
|
2014-11-01 13:29:49 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
MutexImpl(const MutexImpl&);
|
|
|
|
MutexImpl& operator = (const MutexImpl&);
|
2012-04-23 03:14:34 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-10-30 12:10:39 +01:00
|
|
|
class Foundation_API FastMutexImpl
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
FastMutexImpl();
|
|
|
|
~FastMutexImpl();
|
|
|
|
void lockImpl();
|
|
|
|
bool tryLockImpl();
|
|
|
|
bool tryLockImpl(long milliseconds);
|
|
|
|
void unlockImpl();
|
|
|
|
|
|
|
|
private:
|
|
|
|
HANDLE _mutex;
|
|
|
|
};
|
2012-04-23 03:14:34 +02:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace Poco
|
|
|
|
|
|
|
|
|
|
|
|
#endif // Foundation_Mutex_WINCE_INCLUDED
|