diff options
author | nocomer <nocomer@yandex-team.ru> | 2022-02-10 16:51:48 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:51:48 +0300 |
commit | df2933eb0ef860ea5a47e630dfa493fd7171ff38 (patch) | |
tree | ab7fbbf3253d4c0e2793218f09378908beb025fb /util/system | |
parent | 98445ce16e046ec9528200234bd53fcf7f9aa61b (diff) | |
download | ydb-df2933eb0ef860ea5a47e630dfa493fd7171ff38.tar.gz |
Restoring authorship annotation for <nocomer@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/system')
-rw-r--r-- | util/system/context.cpp | 2 | ||||
-rw-r--r-- | util/system/sanitizers.cpp | 38 | ||||
-rw-r--r-- | util/system/sanitizers.h | 4 |
3 files changed, 22 insertions, 22 deletions
diff --git a/util/system/context.cpp b/util/system/context.cpp index 4b72b0eb06..ad99309088 100644 --- a/util/system/context.cpp +++ b/util/system/context.cpp @@ -197,7 +197,7 @@ TContMachineContext::TContMachineContext(const TContClosure& c) void TContMachineContext::SwitchTo(TContMachineContext* next) noexcept { if (Y_LIKELY(__mysetjmp(Buf_) == 0)) { #if defined(_asan_enabled_) || defined(_tsan_enabled_) - next->San_.BeforeSwitch(&San_); + next->San_.BeforeSwitch(&San_); #endif __mylongjmp(next->Buf_, 1); } else { diff --git a/util/system/sanitizers.cpp b/util/system/sanitizers.cpp index 06e60d661d..bb799a9e2e 100644 --- a/util/system/sanitizers.cpp +++ b/util/system/sanitizers.cpp @@ -39,7 +39,7 @@ using namespace NSan; TFiberContext::TFiberContext() noexcept : Token_(nullptr) - , IsMainFiber_(true) + , IsMainFiber_(true) #if defined(_tsan_enabled_) , CurrentTSanFiberContext_(__tsan_get_current_fiber()) #endif @@ -59,7 +59,7 @@ TFiberContext::TFiberContext(const void* stack, size_t len, const char* contName : Token_(nullptr) , Stack_(stack) , Len_(len) - , IsMainFiber_(false) + , IsMainFiber_(false) #if defined(_tsan_enabled_) , CurrentTSanFiberContext_(__tsan_create_fiber(/*flags =*/0)) #endif @@ -71,22 +71,22 @@ TFiberContext::TFiberContext(const void* stack, size_t len, const char* contName } TFiberContext::~TFiberContext() noexcept { - if (!IsMainFiber_) { -#if defined(_asan_enabled_) - if (Token_) { - // destroy saved FakeStack - void* activeFakeStack = nullptr; - const void* activeStack = nullptr; - size_t activeStackSize = 0; - __sanitizer_start_switch_fiber(&activeFakeStack, (char*)Stack_, Len_); - __sanitizer_finish_switch_fiber(Token_, &activeStack, &activeStackSize); - __sanitizer_start_switch_fiber(nullptr, activeStack, activeStackSize); - __sanitizer_finish_switch_fiber(activeFakeStack, nullptr, nullptr); - } -#endif + if (!IsMainFiber_) { +#if defined(_asan_enabled_) + if (Token_) { + // destroy saved FakeStack + void* activeFakeStack = nullptr; + const void* activeStack = nullptr; + size_t activeStackSize = 0; + __sanitizer_start_switch_fiber(&activeFakeStack, (char*)Stack_, Len_); + __sanitizer_finish_switch_fiber(Token_, &activeStack, &activeStackSize); + __sanitizer_start_switch_fiber(nullptr, activeStack, activeStackSize); + __sanitizer_finish_switch_fiber(activeFakeStack, nullptr, nullptr); + } +#endif #if defined(_tsan_enabled_) __tsan_destroy_fiber(CurrentTSanFiberContext_); -#endif +#endif } } @@ -100,11 +100,11 @@ void TFiberContext::BeforeFinish() noexcept { #endif } -void TFiberContext::BeforeSwitch(TFiberContext* old) noexcept { +void TFiberContext::BeforeSwitch(TFiberContext* old) noexcept { #if defined(_asan_enabled_) __sanitizer_start_switch_fiber(old ? &old->Token_ : nullptr, (char*)Stack_, Len_); -#else - (void)old; +#else + (void)old; #endif #if defined(_tsan_enabled_) diff --git a/util/system/sanitizers.h b/util/system/sanitizers.h index 0ba29db8c4..965e5c751e 100644 --- a/util/system/sanitizers.h +++ b/util/system/sanitizers.h @@ -25,7 +25,7 @@ namespace NSan { ~TFiberContext() noexcept; void BeforeFinish() noexcept; - void BeforeSwitch(TFiberContext* old) noexcept; + void BeforeSwitch(TFiberContext* old) noexcept; void AfterSwitch() noexcept; static void AfterStart() noexcept; @@ -35,7 +35,7 @@ namespace NSan { const void* Stack_; size_t Len_; - const bool IsMainFiber_; + const bool IsMainFiber_; #if defined(_tsan_enabled_) void* const CurrentTSanFiberContext_; #endif |