mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-07-26 02:31:48 +02:00
Update POCO library.
This commit is contained in:
@@ -21,7 +21,7 @@
|
||||
#include "Poco/Foundation.h"
|
||||
#include "Poco/Exception.h"
|
||||
#include "Poco/UnWindows.h"
|
||||
|
||||
#include <atomic>
|
||||
|
||||
namespace Poco {
|
||||
|
||||
@@ -29,15 +29,15 @@ namespace Poco {
|
||||
class Foundation_API EventImpl
|
||||
{
|
||||
protected:
|
||||
EventImpl(bool autoReset);
|
||||
EventImpl(bool autoReset);
|
||||
~EventImpl();
|
||||
void setImpl();
|
||||
void waitImpl();
|
||||
bool waitImpl(long milliseconds);
|
||||
void resetImpl();
|
||||
|
||||
|
||||
private:
|
||||
HANDLE _event;
|
||||
std::atomic<HANDLE> _event;
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user