fixed SF# 1896482: tryReadLock intermittent error

This commit is contained in:
Guenter Obiltschnig
2008-09-17 19:13:50 +00:00
parent cf1d1fa952
commit c83f8e2434
3 changed files with 31 additions and 9 deletions

View File

@@ -1,7 +1,7 @@
//
// RWLock_WIN32.h
//
// $Id: //poco/svn/Foundation/include/Poco/RWLock_WIN32.h#2 $
// $Id: //poco/1.3/Foundation/include/Poco/RWLock_WIN32.h#3 $
//
// Library: Foundation
// Package: Threading
@@ -67,6 +67,7 @@ private:
HANDLE _readEvent;
HANDLE _writeEvent;
unsigned _readers;
unsigned _writersWaiting;
unsigned _writers;
};