summaryrefslogtreecommitdiffhomepage
path: root/dev/LibCompiler
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-05-27 23:04:58 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-05-27 23:04:58 +0200
commit0965112fb81ef3e04010197f68f743c98a7611ba (patch)
tree0316f677e71e340269dcafb3c6c82c728b8e1417 /dev/LibCompiler
parent7878653e8dbd65d94ea8ea8bae6e0afd3c3d0af3 (diff)
feat: utils: Replace signal name with SIGNAL: prefix.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/LibCompiler')
-rw-r--r--dev/LibCompiler/Util/LCClUtils.h4
1 files changed, 2 insertions, 2 deletions
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;
}
}