summaryrefslogtreecommitdiff
path: root/llama.cpp/ggml/src/ggml.cpp
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-02-12 20:57:17 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-02-12 20:57:17 +0100
commitb333b06772c89d96aacb5490d6a219fba7c09cc6 (patch)
tree211df60083a5946baa2ed61d33d8121b7e251b06 /llama.cpp/ggml/src/ggml.cpp
downloadllmnpc-b333b06772c89d96aacb5490d6a219fba7c09cc6.tar.gz
Engage!
Diffstat (limited to 'llama.cpp/ggml/src/ggml.cpp')
-rw-r--r--llama.cpp/ggml/src/ggml.cpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/llama.cpp/ggml/src/ggml.cpp b/llama.cpp/ggml/src/ggml.cpp
new file mode 100644
index 0000000..0d388d4
--- /dev/null
+++ b/llama.cpp/ggml/src/ggml.cpp
@@ -0,0 +1,26 @@
+#include "ggml-impl.h"
+
+#include <cstdlib>
+#include <exception>
+
+static std::terminate_handler previous_terminate_handler;
+
+GGML_NORETURN static void ggml_uncaught_exception() {
+ ggml_print_backtrace();
+ if (previous_terminate_handler) {
+ previous_terminate_handler();
+ }
+ abort(); // unreachable unless previous_terminate_handler was nullptr
+}
+
+static bool ggml_uncaught_exception_init = []{
+ const char * GGML_NO_BACKTRACE = getenv("GGML_NO_BACKTRACE");
+ if (GGML_NO_BACKTRACE) {
+ return false;
+ }
+ const auto prev{std::get_terminate()};
+ GGML_ASSERT(prev != ggml_uncaught_exception);
+ previous_terminate_handler = prev;
+ std::set_terminate(ggml_uncaught_exception);
+ return true;
+}();