From 9b1a65a1b7486df3166120bcd94ac4a04f47092d Mon Sep 17 00:00:00 2001 From: Elad <18193363+elad335@users.noreply.github.com> Date: Tue, 30 Jun 2026 23:07:40 +0300 Subject: [PATCH] Disable trap on MacOs --- Utilities/Thread.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Utilities/Thread.cpp b/Utilities/Thread.cpp index d05eb1488a..fd29182c39 100644 --- a/Utilities/Thread.cpp +++ b/Utilities/Thread.cpp @@ -3047,7 +3047,9 @@ void thread_ctrl::set_name(std::string name) return false; }).second) { +#ifndef __APPLE__ utils::trap(); +#endif } }