From 19fcec84d8d7d21e796c7624e521b60d28ee21ed Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 20:45:59 +0200 Subject: Adding upstream version 16.2.11+ds. Signed-off-by: Daniel Baumann --- src/tools/rbd_mirror/Threads.cc | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/tools/rbd_mirror/Threads.cc (limited to 'src/tools/rbd_mirror/Threads.cc') diff --git a/src/tools/rbd_mirror/Threads.cc b/src/tools/rbd_mirror/Threads.cc new file mode 100644 index 000000000..b0c762641 --- /dev/null +++ b/src/tools/rbd_mirror/Threads.cc @@ -0,0 +1,38 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab + +#include "tools/rbd_mirror/Threads.h" +#include "common/Timer.h" +#include "librbd/AsioEngine.h" +#include "librbd/ImageCtx.h" +#include "librbd/asio/ContextWQ.h" + +namespace rbd { +namespace mirror { + +template +Threads::Threads(std::shared_ptr& rados) { + auto cct = static_cast(rados->cct()); + asio_engine = new librbd::AsioEngine(rados); + work_queue = asio_engine->get_work_queue(); + + timer = new SafeTimer(cct, timer_lock, true); + timer->init(); +} + +template +Threads::~Threads() { + { + std::lock_guard timer_locker{timer_lock}; + timer->shutdown(); + } + delete timer; + + work_queue->drain(); + delete asio_engine; +} + +} // namespace mirror +} // namespace rbd + +template class rbd::mirror::Threads; -- cgit v1.2.3