From 0ba2fa81058b19148dcc002fb7445d11b517a3ed Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Mon, 26 Oct 2020 11:56:30 +0300 Subject: [PATCH] Fix "Arcadia" --- src/Common/ThreadStatus.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Common/ThreadStatus.cpp b/src/Common/ThreadStatus.cpp index bd063b43fad..48132991fab 100644 --- a/src/Common/ThreadStatus.cpp +++ b/src/Common/ThreadStatus.cpp @@ -46,7 +46,7 @@ ThreadStatus::ThreadStatus() /// Will set alternative signal stack to provide diagnostics for stack overflow errors. /// If not already installed for current thread. -#if !defined(SANITIZER) /// Sanitizer makes larger stack usage and/or confused by alternative stack. +#if !defined(SANITIZER) && !defined(ARCADIA_BUILD) /// Sanitizer makes larger stack usage and/or confused by alternative stack. if (!has_alt_stack) { /// Don't repeat tries even if not installed successfully.