diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-01-21 22:14:31 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-01-21 22:14:31 +0100 |
| commit | 6c2b1b2f83c492db1e38879719502668276442f6 (patch) | |
| tree | a3b057c2eef7759010beca6b859eb0e0854026fa /include/CompilerKit/Utilities/Compiler.h | |
| parent | 470f065bc61bc3dbebe342d426e49a4f70ff335b (diff) | |
feat: CompilerKit: Assembler and Linker improvements.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/CompilerKit/Utilities/Compiler.h')
| -rw-r--r-- | include/CompilerKit/Utilities/Compiler.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/include/CompilerKit/Utilities/Compiler.h b/include/CompilerKit/Utilities/Compiler.h index 97d1e9c..621f229 100644 --- a/include/CompilerKit/Utilities/Compiler.h +++ b/include/CompilerKit/Utilities/Compiler.h @@ -91,15 +91,7 @@ inline void drvi_crash_handler(std::int32_t id) { switch (id) { default: { - kStdOut << "SIGNAL: Unknown Signal (" << id << ")." << kBlank << std::endl; - break; - } - case SIGSEGV: { - kStdOut << "SIGNAL: Segmentation Fault." << kBlank << std::endl; - break; - } - case SIGABRT: { - kStdOut << "SIGNAL: Aborted." << kBlank << std::endl; + kStdOut << "SIGNAL: Signal (" << id << ")." << kBlank << std::endl; break; } } |
