GH #140: Poco::Runnable threading cleanup issue

This commit is contained in:
aleks-f
2013-03-29 14:02:53 -05:00
parent ad5361ede1
commit 6719d3448f
4 changed files with 27 additions and 3 deletions

View File

@@ -156,6 +156,7 @@ private:
policy(SCHED_OTHER),
done(false),
stackSize(POCO_THREAD_STACK_SIZE),
started(false),
joined(false)
{
#if defined(POCO_VXWORKS)
@@ -173,6 +174,7 @@ private:
int policy;
Event done;
std::size_t stackSize;
bool started;
bool joined;
};