Merge branch 'master' into retries-in-submodules

This commit is contained in:
Alexey Milovidov 2024-05-20 08:38:43 +02:00
commit db491fb847

View File

@ -23,12 +23,8 @@ thread_local ThreadStatus constinit * current_thread = nullptr;
namespace
{
#if defined(__aarch64__)
/// For aarch64 16K is not enough (likely due to tons of registers)
static constexpr size_t UNWIND_MINSIGSTKSZ = 32 << 10;
#else
static constexpr size_t UNWIND_MINSIGSTKSZ = 16 << 10;
#endif
constexpr size_t UNWIND_MINSIGSTKSZ = 32 << 10;
/// Alternative stack for signal handling.
///