2023-09-24 21:56:05 +08:00
|
|
|
// Copyright(c) 2015-present, Gabi Melman & spdlog contributors.
|
|
|
|
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
|
|
|
|
2023-09-29 05:05:17 +08:00
|
|
|
#include "spdlog/details/periodic_worker.h"
|
2023-09-24 21:56:05 +08:00
|
|
|
|
|
|
|
namespace spdlog {
|
|
|
|
namespace details {
|
|
|
|
|
|
|
|
// stop the worker thread and join it
|
2023-09-25 07:35:55 +08:00
|
|
|
periodic_worker::~periodic_worker() {
|
|
|
|
if (worker_thread_.joinable()) {
|
2023-09-24 21:56:05 +08:00
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> lock(mutex_);
|
|
|
|
active_ = false;
|
|
|
|
}
|
|
|
|
cv_.notify_one();
|
|
|
|
worker_thread_.join();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-25 21:40:05 +08:00
|
|
|
} // namespace details
|
|
|
|
} // namespace spdlog
|