diff options
author | Alexander Gololobov <davenger@yandex-team.com> | 2022-02-10 16:47:37 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:37 +0300 |
commit | 39608cdb86363c75ce55b2b9a69841c3b71f22cf (patch) | |
tree | 4ec132c1665bd4d68e3628aa18d937c70d32413b /library/cpp/actors/core/event.h | |
parent | 54295b9bd4dc45c54d804084fd846d945148a7f0 (diff) | |
download | ydb-39608cdb86363c75ce55b2b9a69841c3b71f22cf.tar.gz |
Restoring authorship annotation for Alexander Gololobov <davenger@yandex-team.com>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/actors/core/event.h')
-rw-r--r-- | library/cpp/actors/core/event.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/library/cpp/actors/core/event.h b/library/cpp/actors/core/event.h index 6ff02aaf94..9d2b694cb2 100644 --- a/library/cpp/actors/core/event.h +++ b/library/cpp/actors/core/event.h @@ -7,9 +7,9 @@ #include <library/cpp/actors/wilson/wilson_trace.h> -#include <util/system/hp_timer.h> +#include <util/system/hp_timer.h> #include <util/generic/maybe.h> - + namespace NActors { class TChunkSerializer; @@ -110,10 +110,10 @@ namespace NActors { // filled if feeded by interconnect session const TActorId InterconnectSession; -#ifdef ACTORSLIB_COLLECT_EXEC_STATS +#ifdef ACTORSLIB_COLLECT_EXEC_STATS ::NHPTimer::STime SendTime; -#endif - +#endif + static const size_t ChannelBits = 12; static const size_t ChannelShift = (sizeof(ui32) << 3) - ChannelBits; @@ -174,9 +174,9 @@ namespace NActors { , Sender(sender) , Cookie(cookie) , TraceId(std::move(traceId)) -#ifdef ACTORSLIB_COLLECT_EXEC_STATS +#ifdef ACTORSLIB_COLLECT_EXEC_STATS , SendTime(0) -#endif +#endif , Event(ev) , RewriteRecipient(Recipient) , RewriteType(Type) @@ -199,9 +199,9 @@ namespace NActors { , Sender(sender) , Cookie(cookie) , TraceId(std::move(traceId)) -#ifdef ACTORSLIB_COLLECT_EXEC_STATS +#ifdef ACTORSLIB_COLLECT_EXEC_STATS , SendTime(0) -#endif +#endif , Buffer(std::move(buffer)) , RewriteRecipient(Recipient) , RewriteType(Type) @@ -228,9 +228,9 @@ namespace NActors { , OriginScopeId(originScopeId) , TraceId(std::move(traceId)) , InterconnectSession(session) -#ifdef ACTORSLIB_COLLECT_EXEC_STATS +#ifdef ACTORSLIB_COLLECT_EXEC_STATS , SendTime(0) -#endif +#endif , Buffer(std::move(buffer)) , RewriteRecipient(Recipient) , RewriteType(Type) |