From 0965112fb81ef3e04010197f68f743c98a7611ba Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Tue, 27 May 2025 23:04:58 +0200 Subject: feat: utils: Replace signal name with SIGNAL: prefix. Signed-off-by: Amlal El Mahrouss --- dev/LibCompiler/Util/LCClUtils.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dev/LibCompiler') diff --git a/dev/LibCompiler/Util/LCClUtils.h b/dev/LibCompiler/Util/LCClUtils.h index 8e7c4d7..94a113c 100644 --- a/dev/LibCompiler/Util/LCClUtils.h +++ b/dev/LibCompiler/Util/LCClUtils.h @@ -80,11 +80,11 @@ inline void drvi_crash_handler(std::int32_t id) { switch (id) { case SIGSEGV: { - kStdOut << "SIGSEGV: Segmentation Fault." << kBlank << std::endl; + kStdOut << "SIGNAL: Segmentation Fault." << kBlank << std::endl; break; } case SIGABRT: { - kStdOut << "SIGABRT: Aborted." << kBlank << std::endl; + kStdOut << "SIGNAL: Aborted." << kBlank << std::endl; break; } } -- cgit v1.2.3