aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/dns/thread.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/dns/thread.cpp')
-rw-r--r--library/cpp/dns/thread.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/dns/thread.cpp b/library/cpp/dns/thread.cpp
index efec63831c..8b27d2d527 100644
--- a/library/cpp/dns/thread.cpp
+++ b/library/cpp/dns/thread.cpp
@@ -3,7 +3,7 @@
#include "magic.h"
#include <util/network/socket.h>
-#include <util/thread/factory.h>
+#include <util/thread/factory.h>
#include <util/thread/lfqueue.h>
#include <util/system/event.h>
#include <util/generic/vector.h>
@@ -12,7 +12,7 @@
using namespace NDns;
namespace {
- class TThreadedResolver: public IThreadFactory::IThreadAble, public TNonCopyable {
+ class TThreadedResolver: public IThreadFactory::IThreadAble, public TNonCopyable {
struct TResolveRequest {
inline TResolveRequest(const TString& host, ui16 port)
: Host(host)
@@ -61,7 +61,7 @@ namespace {
inline TThreadedResolver()
: E_(TSystemEvent::rAuto)
{
- T_.push_back(SystemThreadFactory()->Run(this));
+ T_.push_back(SystemThreadFactory()->Run(this));
}
inline ~TThreadedResolver() override {
@@ -121,7 +121,7 @@ namespace {
private:
TLockFreeQueue<TResolveRequest*> Q_;
TSystemEvent E_;
- typedef TAutoPtr<IThreadFactory::IThread> IThreadRef;
+ typedef TAutoPtr<IThreadFactory::IThread> IThreadRef;
TVector<IThreadRef> T_;
};
}