aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/lwtrace
diff options
context:
space:
mode:
authorasorotsky <asorotsky@yandex-team.ru>2022-02-10 16:47:33 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:47:33 +0300
commit80f0a6b4102e3b2c89f23935c7690409033ea24c (patch)
treed37ae19cf2360516f71e010c02f3fd8fc6b22999 /library/cpp/lwtrace
parent9f1d4466bb653173233b0e47d2cbda7f46995f92 (diff)
downloadydb-80f0a6b4102e3b2c89f23935c7690409033ea24c.tar.gz
Restoring authorship annotation for <asorotsky@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/lwtrace')
-rw-r--r--library/cpp/lwtrace/all.h2
-rw-r--r--library/cpp/lwtrace/check.cpp4
-rw-r--r--library/cpp/lwtrace/control.h14
-rw-r--r--library/cpp/lwtrace/custom_action.cpp2
-rw-r--r--library/cpp/lwtrace/custom_action.h10
-rw-r--r--library/cpp/lwtrace/event.h4
-rw-r--r--library/cpp/lwtrace/kill_action.cpp4
-rw-r--r--library/cpp/lwtrace/log.h18
-rw-r--r--library/cpp/lwtrace/lwprobe.h6
-rw-r--r--library/cpp/lwtrace/perf.cpp4
-rw-r--r--library/cpp/lwtrace/preprocessor.h10
-rw-r--r--library/cpp/lwtrace/probe.h8
-rw-r--r--library/cpp/lwtrace/probes.h2
-rw-r--r--library/cpp/lwtrace/shuttle.h10
-rw-r--r--library/cpp/lwtrace/signature.h6
-rw-r--r--library/cpp/lwtrace/sleep_action.cpp8
-rw-r--r--library/cpp/lwtrace/start.cpp10
-rw-r--r--library/cpp/lwtrace/stderr_writer.cpp2
-rw-r--r--library/cpp/lwtrace/symbol.cpp4
-rw-r--r--library/cpp/lwtrace/trace.cpp14
20 files changed, 71 insertions, 71 deletions
diff --git a/library/cpp/lwtrace/all.h b/library/cpp/lwtrace/all.h
index d7aa57c49d7..b02925c44b6 100644
--- a/library/cpp/lwtrace/all.h
+++ b/library/cpp/lwtrace/all.h
@@ -2,7 +2,7 @@
#include "control.h"
#include "event.h"
-#include "preprocessor.h"
+#include "preprocessor.h"
#include "probe.h"
#include "start.h"
diff --git a/library/cpp/lwtrace/check.cpp b/library/cpp/lwtrace/check.cpp
index 4e34fc5d49d..2fa7c7bc222 100644
--- a/library/cpp/lwtrace/check.cpp
+++ b/library/cpp/lwtrace/check.cpp
@@ -1,6 +1,6 @@
#include "check.h"
-
-#include <util/stream/output.h>
+
+#include <util/stream/output.h>
#include <util/string/cast.h>
namespace NLWTrace {
diff --git a/library/cpp/lwtrace/control.h b/library/cpp/lwtrace/control.h
index 16b24eafd2d..8f4393b64e2 100644
--- a/library/cpp/lwtrace/control.h
+++ b/library/cpp/lwtrace/control.h
@@ -1,15 +1,15 @@
#pragma once
-#include "custom_action.h"
-#include "event.h"
-#include "log.h"
+#include "custom_action.h"
+#include "event.h"
+#include "log.h"
#include "log_shuttle.h"
-#include "probe.h"
-
+#include "probe.h"
+
#include <library/cpp/lwtrace/protos/lwtrace.pb.h>
-
+
#include <google/protobuf/repeated_field.h>
-
+
#include <util/generic/deque.h>
#include <util/generic/hash.h>
#include <util/generic/noncopyable.h>
diff --git a/library/cpp/lwtrace/custom_action.cpp b/library/cpp/lwtrace/custom_action.cpp
index a379b34ec05..bfe07b4fbda 100644
--- a/library/cpp/lwtrace/custom_action.cpp
+++ b/library/cpp/lwtrace/custom_action.cpp
@@ -1,5 +1,5 @@
#include "custom_action.h"
-
+
#include "control.h"
using namespace NLWTrace;
diff --git a/library/cpp/lwtrace/custom_action.h b/library/cpp/lwtrace/custom_action.h
index 92a3c66b845..3744d4c5861 100644
--- a/library/cpp/lwtrace/custom_action.h
+++ b/library/cpp/lwtrace/custom_action.h
@@ -1,13 +1,13 @@
#pragma once
#include "probe.h"
-
+
#include <library/cpp/lwtrace/protos/lwtrace.pb.h>
-#include <util/generic/hash.h>
-
-#include <functional>
-
+#include <util/generic/hash.h>
+
+#include <functional>
+
namespace NLWTrace {
class TSession;
diff --git a/library/cpp/lwtrace/event.h b/library/cpp/lwtrace/event.h
index e53a620c456..0d81f92475e 100644
--- a/library/cpp/lwtrace/event.h
+++ b/library/cpp/lwtrace/event.h
@@ -1,9 +1,9 @@
#pragma once
-#include "preprocessor.h"
+#include "preprocessor.h"
#include "signature.h"
#include "param_traits.h"
-
+
#include <library/cpp/lwtrace/protos/lwtrace.pb.h>
namespace NLWTrace {
diff --git a/library/cpp/lwtrace/kill_action.cpp b/library/cpp/lwtrace/kill_action.cpp
index 2b74dc4587c..ace41b7aec3 100644
--- a/library/cpp/lwtrace/kill_action.cpp
+++ b/library/cpp/lwtrace/kill_action.cpp
@@ -1,11 +1,11 @@
-#include "kill_action.h"
+#include "kill_action.h"
#ifndef _win_
#include <sys/types.h>
#include <signal.h>
#endif
-#include <stdlib.h>
+#include <stdlib.h>
using namespace NLWTrace;
using namespace NLWTrace::NPrivate;
diff --git a/library/cpp/lwtrace/log.h b/library/cpp/lwtrace/log.h
index 56981a97f8a..dad2197b0b0 100644
--- a/library/cpp/lwtrace/log.h
+++ b/library/cpp/lwtrace/log.h
@@ -1,19 +1,19 @@
#pragma once
-#include "probe.h"
-
-#include <util/datetime/base.h>
-#include <util/generic/algorithm.h>
-#include <util/generic/deque.h>
+#include "probe.h"
+
+#include <util/datetime/base.h>
+#include <util/generic/algorithm.h>
+#include <util/generic/deque.h>
#include <util/generic/noncopyable.h>
#include <util/generic/vector.h>
-#include <util/string/printf.h>
-#include <util/system/atomic.h>
-#include <util/system/hp_timer.h>
+#include <util/string/printf.h>
+#include <util/system/atomic.h>
+#include <util/system/hp_timer.h>
#include <util/system/mutex.h>
#include <util/system/spinlock.h>
#include <util/system/thread.h>
-#include <util/system/tls.h>
+#include <util/system/tls.h>
namespace NLWTrace {
// Cyclic buffer that pushes items to its back and pop item from front on overflow
diff --git a/library/cpp/lwtrace/lwprobe.h b/library/cpp/lwtrace/lwprobe.h
index 801fc3861b2..0bd8253ea9e 100644
--- a/library/cpp/lwtrace/lwprobe.h
+++ b/library/cpp/lwtrace/lwprobe.h
@@ -1,8 +1,8 @@
#pragma once
-#include "control.h"
-#include "probe.h"
-
+#include "control.h"
+#include "probe.h"
+
#include <ctype.h>
namespace NLWTrace {
diff --git a/library/cpp/lwtrace/perf.cpp b/library/cpp/lwtrace/perf.cpp
index 03b68586eaa..190aca306f0 100644
--- a/library/cpp/lwtrace/perf.cpp
+++ b/library/cpp/lwtrace/perf.cpp
@@ -1,7 +1,7 @@
#include "perf.h"
-#include "probes.h"
-
+#include "probes.h"
+
#include <util/system/datetime.h>
#include <util/system/hp_timer.h>
diff --git a/library/cpp/lwtrace/preprocessor.h b/library/cpp/lwtrace/preprocessor.h
index 40865467b29..396c7ff7f6b 100644
--- a/library/cpp/lwtrace/preprocessor.h
+++ b/library/cpp/lwtrace/preprocessor.h
@@ -4,11 +4,11 @@
#include "perf.h"
#include "symbol.h"
-#include <util/generic/hide_ptr.h>
-#include <util/system/platform.h>
-
-#include <stddef.h> //size_t
-
+#include <util/generic/hide_ptr.h>
+#include <util/system/platform.h>
+
+#include <stddef.h> //size_t
+
#ifdef _win_
#ifndef LWTRACE_DISABLE
#define LWTRACE_DISABLE
diff --git a/library/cpp/lwtrace/probe.h b/library/cpp/lwtrace/probe.h
index 31fa282da3f..31cf4974c98 100644
--- a/library/cpp/lwtrace/probe.h
+++ b/library/cpp/lwtrace/probe.h
@@ -5,11 +5,11 @@
#include "rwspinlock.h"
#include "shuttle.h"
-#include <util/datetime/cputimer.h>
-#include <util/generic/hide_ptr.h>
+#include <util/datetime/cputimer.h>
+#include <util/generic/hide_ptr.h>
#include <util/generic/scope.h>
-#include <util/system/atomic.h>
-
+#include <util/system/atomic.h>
+
namespace NLWTrace {
// Represents a chain (linked list) of steps for execution of a trace query block
// NOTE: different executor objects are used on different probes (even for the same query block)
diff --git a/library/cpp/lwtrace/probes.h b/library/cpp/lwtrace/probes.h
index 68810bd1182..6513e941ab1 100644
--- a/library/cpp/lwtrace/probes.h
+++ b/library/cpp/lwtrace/probes.h
@@ -1,6 +1,6 @@
#pragma once
-#include "all.h"
+#include "all.h"
#define LWTRACE_INTERNAL_PROVIDER(PROBE, EVENT, GROUPS, TYPES, NAMES) \
PROBE(PerfReport, GROUPS(), \
diff --git a/library/cpp/lwtrace/shuttle.h b/library/cpp/lwtrace/shuttle.h
index 85c6e4da613..49f55efef2e 100644
--- a/library/cpp/lwtrace/shuttle.h
+++ b/library/cpp/lwtrace/shuttle.h
@@ -1,15 +1,15 @@
#pragma once
-#include "event.h"
-
+#include "event.h"
+
#include <library/cpp/containers/stack_vector/stack_vec.h>
-
+
#include <util/generic/ptr.h>
#include <util/system/spinlock.h>
-#include <algorithm>
+#include <algorithm>
#include <type_traits>
-
+
namespace NLWTrace {
struct TProbe;
diff --git a/library/cpp/lwtrace/signature.h b/library/cpp/lwtrace/signature.h
index 868bd9bcf26..8ed5b8be4ba 100644
--- a/library/cpp/lwtrace/signature.h
+++ b/library/cpp/lwtrace/signature.h
@@ -1,9 +1,9 @@
#pragma once
-#include "preprocessor.h"
-
+#include "preprocessor.h"
+
#include <library/cpp/lwtrace/protos/lwtrace.pb.h>
-
+
#include <util/generic/cast.h>
#include <util/generic/string.h>
#include <util/generic/typetraits.h>
diff --git a/library/cpp/lwtrace/sleep_action.cpp b/library/cpp/lwtrace/sleep_action.cpp
index 74977528dbc..ebcafa7d749 100644
--- a/library/cpp/lwtrace/sleep_action.cpp
+++ b/library/cpp/lwtrace/sleep_action.cpp
@@ -1,11 +1,11 @@
-#include "sleep_action.h"
+#include "sleep_action.h"
#include "control.h"
-
+
#include <util/system/datetime.h>
-#include <stdlib.h>
-
+#include <stdlib.h>
+
using namespace NLWTrace;
using namespace NLWTrace::NPrivate;
diff --git a/library/cpp/lwtrace/start.cpp b/library/cpp/lwtrace/start.cpp
index 121d5472b63..ec971ce184d 100644
--- a/library/cpp/lwtrace/start.cpp
+++ b/library/cpp/lwtrace/start.cpp
@@ -1,15 +1,15 @@
-#include "start.h"
-
-#include "all.h"
+#include "start.h"
+#include "all.h"
+
#include <google/protobuf/text_format.h>
#include <util/generic/singleton.h>
#include <util/stream/file.h>
-#include <util/stream/output.h>
+#include <util/stream/output.h>
#include <util/system/env.h>
-#include <stdlib.h>
+#include <stdlib.h>
using namespace NLWTrace;
diff --git a/library/cpp/lwtrace/stderr_writer.cpp b/library/cpp/lwtrace/stderr_writer.cpp
index 6e5654c3384..629b14135bc 100644
--- a/library/cpp/lwtrace/stderr_writer.cpp
+++ b/library/cpp/lwtrace/stderr_writer.cpp
@@ -1,5 +1,5 @@
#include "stderr_writer.h"
-
+
#include <util/stream/str.h>
using namespace NLWTrace;
diff --git a/library/cpp/lwtrace/symbol.cpp b/library/cpp/lwtrace/symbol.cpp
index 456652bcd07..745437cb25e 100644
--- a/library/cpp/lwtrace/symbol.cpp
+++ b/library/cpp/lwtrace/symbol.cpp
@@ -1,6 +1,6 @@
#include "symbol.h"
-
-#include <util/stream/output.h>
+
+#include <util/stream/output.h>
#include <util/string/cast.h>
template <>
diff --git a/library/cpp/lwtrace/trace.cpp b/library/cpp/lwtrace/trace.cpp
index 3c974c85a01..2e756e2670c 100644
--- a/library/cpp/lwtrace/trace.cpp
+++ b/library/cpp/lwtrace/trace.cpp
@@ -1,16 +1,16 @@
-#include "all.h"
+#include "all.h"
#include "kill_action.h"
-#include "log_shuttle.h"
-#include "preprocessor.h"
+#include "log_shuttle.h"
+#include "preprocessor.h"
#include "sleep_action.h"
-#include "stderr_writer.h"
+#include "stderr_writer.h"
#include "google/protobuf/repeated_field.h"
-
+
#include <util/generic/map.h>
#include <util/random/random.h>
-#include <functional>
-
+#include <functional>
+
namespace NLWTrace {
#ifndef LWTRACE_DISABLE