Skip to content

Commit

Permalink
Fix issue related to MINSIGSTKSZ
Browse files Browse the repository at this point in the history
  • Loading branch information
hnformentin committed Dec 5, 2022
1 parent f9e1f1a commit c6ad8b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion external/Catch2/catch2/catch.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
Expand Down

0 comments on commit c6ad8b9

Please sign in to comment.