From 2cf3a2995986e3e4e1b942303217de274cbcfde5 Mon Sep 17 00:00:00 2001 From: ROCm CI Service Account <66695075+rocm-ci@users.noreply.github.com> Date: Fri, 26 Aug 2022 00:54:13 +0530 Subject: [PATCH] SWDEV-345944 - Remove use of MINSIGSTKSZ. (#2857) Change-Id: Ia0cdb2b48ea44ced325f3c442237420c8cee2312 [ROCm/hip commit: 946d5d6ea89ece3029395a45aaf62c13d65cee33] --- projects/hip/tests/catch/external/Catch2/catch.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/hip/tests/catch/external/Catch2/catch.hpp b/projects/hip/tests/catch/external/Catch2/catch.hpp index 0384171ae4..6897dae0d0 100644 --- a/projects/hip/tests/catch/external/Catch2/catch.hpp +++ b/projects/hip/tests/catch/external/Catch2/catch.hpp @@ -10819,7 +10819,7 @@ namespace Catch { // 32kb for the alternate stack seems to be sufficient. However, this value // is experimentally determined, so that's not guaranteed. - static constexpr std::size_t sigStackSize = 32768 >= MINSIGSTKSZ ? 32768 : MINSIGSTKSZ; + static constexpr std::size_t sigStackSize = 32768; static SignalDefs signalDefs[] = { { SIGINT, "SIGINT - Terminal interrupt signal" },