diff options
| author | Matteo Gmür <matteo.gmuer1@ost.ch> | 2024-10-20 12:02:20 +0000 |
|---|---|---|
| committer | Matteo Gmür <matteo.gmuer1@ost.ch> | 2024-10-20 12:02:20 +0000 |
| commit | da2341ec12128d3b4983a67d39aeaf76b1781fa8 (patch) | |
| tree | eab408f61804267fabb7151edce4410b0f05ddc2 /arch/x86_64/src/exception_handling/abort.cpp | |
| parent | 0d42fed17834a21d29032dd2d8e56e11596056bc (diff) | |
| download | kernel-da2341ec12128d3b4983a67d39aeaf76b1781fa8.tar.xz kernel-da2341ec12128d3b4983a67d39aeaf76b1781fa8.zip | |
Add printf like behaviour to assert
Diffstat (limited to 'arch/x86_64/src/exception_handling/abort.cpp')
| -rw-r--r-- | arch/x86_64/src/exception_handling/abort.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86_64/src/exception_handling/abort.cpp b/arch/x86_64/src/exception_handling/abort.cpp index dc40008..77576b1 100644 --- a/arch/x86_64/src/exception_handling/abort.cpp +++ b/arch/x86_64/src/exception_handling/abort.cpp @@ -4,7 +4,6 @@ namespace teachos::arch::exception_handling { - /** * @brief Override for the newlib abort function. * @@ -14,4 +13,4 @@ namespace teachos::arch::exception_handling */ extern "C" auto abort() -> void { panic("Terminate was called, possibly due to an unhandled exception"); } -} // namespace teachos::arch::exception_handling
\ No newline at end of file +} // namespace teachos::arch::exception_handling |
