blob: d6c8314b2436d7f4a8b0d543a9373b74adc33422 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
//
// RWLock_WINCE.h
//
// Library: Foundation
// Package: Threading
// Module: RWLock
//
// Definition of the RWLockImpl class for WINCE.
//
// Copyright (c) 2009-2010, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#ifndef Foundation_RWLock_WINCE_INCLUDED
#define Foundation_RWLock_WINCE_INCLUDED
#include "Poco/Foundation.h"
#include "Poco/Exception.h"
#include "Poco/UnWindows.h"
namespace Poco {
class Foundation_API RWLockImpl
/// This implementation is based on the one from Stone Steps Inc,
/// licensed under the BSD license.
/// http://forums.stonesteps.ca/thread.asp?t=105
///
/// Note that with this implementation, writers always take
/// precedence over readers.
{
protected:
RWLockImpl();
~RWLockImpl();
void readLockImpl();
bool tryReadLockImpl(DWORD timeout = 1);
void writeLockImpl();
bool tryWriteLockImpl(DWORD timeout = 1);
void unlockImpl();
private:
DWORD _readerCount;
DWORD _readerWaiting;
DWORD _writerCount;
DWORD _writerWaiting;
HANDLE _readerGreen;
HANDLE _writerGreen;
CRITICAL_SECTION _cs;
bool _writeLock;
};
} // namespace Poco
#endif // Foundation_RWLock_WINCE_INCLUDED
|