mirror of
https://github.com/yhirose/cpp-httplib
synced 2024-11-21 06:26:02 -07:00
Fixed #198
This commit is contained in:
parent
3629f87627
commit
d58deddbcc
1 changed files with 3 additions and 19 deletions
22
httplib.h
22
httplib.h
|
@ -285,7 +285,7 @@ public:
|
|||
#if CPPHTTPLIB_THREAD_POOL_COUNT > 0
|
||||
class ThreadPool : public TaskQueue {
|
||||
public:
|
||||
ThreadPool(size_t n) : shutdown_(false), remaining_(0) {
|
||||
ThreadPool(size_t n) : shutdown_(false) {
|
||||
while (n) {
|
||||
auto t = std::make_shared<std::thread>(worker(*this));
|
||||
threads_.push_back(t);
|
||||
|
@ -303,25 +303,13 @@ public:
|
|||
}
|
||||
|
||||
virtual void shutdown() override {
|
||||
// Handle all remaining jobs...
|
||||
for (;;) {
|
||||
std::unique_lock<std::mutex> lock(mutex_);
|
||||
if (jobs_.empty()) break;
|
||||
cond_.notify_one();
|
||||
}
|
||||
|
||||
// Stop all worker threads...
|
||||
{
|
||||
std::unique_lock<std::mutex> lock(mutex_);
|
||||
shutdown_ = true;
|
||||
remaining_ = threads_.size();
|
||||
}
|
||||
|
||||
for (;;) {
|
||||
std::unique_lock<std::mutex> lock(mutex_);
|
||||
if (!remaining_) break;
|
||||
cond_.notify_all();
|
||||
}
|
||||
cond_.notify_all();
|
||||
|
||||
// Join...
|
||||
for (auto t : threads_) {
|
||||
|
@ -342,7 +330,7 @@ private:
|
|||
pool_.cond_.wait(
|
||||
lock, [&] { return !pool_.jobs_.empty() || pool_.shutdown_; });
|
||||
|
||||
if (pool_.shutdown_) { break; }
|
||||
if (pool_.shutdown_ && pool_.jobs_.empty()) { break; }
|
||||
|
||||
fn = pool_.jobs_.front();
|
||||
pool_.jobs_.pop_front();
|
||||
|
@ -351,9 +339,6 @@ private:
|
|||
assert(true == (bool)fn);
|
||||
fn();
|
||||
}
|
||||
|
||||
std::unique_lock<std::mutex> lock(pool_.mutex_);
|
||||
pool_.remaining_--;
|
||||
}
|
||||
|
||||
ThreadPool &pool_;
|
||||
|
@ -364,7 +349,6 @@ private:
|
|||
std::list<std::function<void()>> jobs_;
|
||||
|
||||
bool shutdown_;
|
||||
size_t remaining_;
|
||||
|
||||
std::condition_variable cond_;
|
||||
std::mutex mutex_;
|
||||
|
|
Loading…
Reference in a new issue