mirror of
https://github.com/pocoproject/poco.git
synced 2025-03-04 19:13:30 +01:00
trunk/branch integration: AsyncChannel locking fix
This commit is contained in:
parent
25ab4f5300
commit
ec76633667
@ -75,7 +75,7 @@ public:
|
||||
|
||||
void open();
|
||||
/// Opens the channel and creates the
|
||||
/// background ;ogging thread.
|
||||
/// background logging thread.
|
||||
|
||||
void close();
|
||||
/// Closes the channel and stops the background
|
||||
@ -110,7 +110,8 @@ protected:
|
||||
private:
|
||||
Channel* _pChannel;
|
||||
Thread _thread;
|
||||
FastMutex _mutex;
|
||||
FastMutex _threadMutex;
|
||||
FastMutex _channelMutex;
|
||||
NotificationQueue _queue;
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user