mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-28 11:31:53 +01:00
latest changes from main rep
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// ThreadPool.cpp
|
||||
//
|
||||
// $Id: //poco/Main/Foundation/src/ThreadPool.cpp#19 $
|
||||
// $Id: //poco/Main/Foundation/src/ThreadPool.cpp#20 $
|
||||
//
|
||||
// Library: Foundation
|
||||
// Package: Threading
|
||||
@@ -41,7 +41,7 @@
|
||||
#include "Poco/ThreadLocal.h"
|
||||
#include "Poco/ErrorHandler.h"
|
||||
#include <sstream>
|
||||
#include <time.h>
|
||||
#include <ctime>
|
||||
|
||||
|
||||
namespace Poco {
|
||||
@@ -64,8 +64,8 @@ public:
|
||||
void run();
|
||||
|
||||
private:
|
||||
volatile bool _idle;
|
||||
volatile time_t _idleTime;
|
||||
volatile bool _idle;
|
||||
volatile std::time_t _idleTime;
|
||||
Runnable* _pTarget;
|
||||
std::string _name;
|
||||
Thread _thread;
|
||||
|
||||
Reference in New Issue
Block a user