From 4edbe94ce1266c9acc6a695fedf1d2edd4ce11cd Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Thu, 24 Jul 2025 15:31:31 +0000 Subject: build: factor out kernel API --- kern/src/abort.cpp | 3 --- kern/src/error.cpp | 19 ------------------- kern/src/kstd.cpp | 10 ---------- kern/src/main.cpp | 14 -------------- kern/src/print.cpp | 51 --------------------------------------------------- 5 files changed, 97 deletions(-) delete mode 100644 kern/src/abort.cpp delete mode 100644 kern/src/error.cpp delete mode 100644 kern/src/kstd.cpp delete mode 100644 kern/src/main.cpp delete mode 100644 kern/src/print.cpp (limited to 'kern/src') diff --git a/kern/src/abort.cpp b/kern/src/abort.cpp deleted file mode 100644 index 6db0b74..0000000 --- a/kern/src/abort.cpp +++ /dev/null @@ -1,3 +0,0 @@ -#include "kern/error.hpp" - -extern "C" [[noreturn]] auto abort() -> void { teachos::panic("Abort called"); } diff --git a/kern/src/error.cpp b/kern/src/error.cpp deleted file mode 100644 index a5229fd..0000000 --- a/kern/src/error.cpp +++ /dev/null @@ -1,19 +0,0 @@ -#include "kern/error.hpp" - -#include "arch/system.hpp" -#include "kern/print.hpp" - -namespace teachos -{ - - auto panic(std::string_view message, std::source_location location) -> void - { - println_error("!!!Kernel Panic!!! "); - println_error(message); - println_error(location.file_name()); - println_error(location.function_name()); - - arch::system::halt(); - } - -} // namespace teachos diff --git a/kern/src/kstd.cpp b/kern/src/kstd.cpp deleted file mode 100644 index 1b7050b..0000000 --- a/kern/src/kstd.cpp +++ /dev/null @@ -1,10 +0,0 @@ -#include "kern/error.hpp" - -#include - -namespace kstd::os -{ - - auto panic(std::string_view message, std::source_location location) -> void { teachos::panic(message, location); } - -} // namespace kstd::os \ No newline at end of file diff --git a/kern/src/main.cpp b/kern/src/main.cpp deleted file mode 100644 index b99fb37..0000000 --- a/kern/src/main.cpp +++ /dev/null @@ -1,14 +0,0 @@ -#include "arch/io.hpp" -#include "arch/memory.hpp" -#include "kern/error.hpp" -#include "kern/print.hpp" - -auto main() -> int -{ - teachos::arch::io::init(); - teachos::println("[OS] IO subsystem initialized."); - - teachos::arch::memory::init(); - - teachos::panic("Architecture specific main returned!"); -} diff --git a/kern/src/print.cpp b/kern/src/print.cpp deleted file mode 100644 index 2c8539b..0000000 --- a/kern/src/print.cpp +++ /dev/null @@ -1,51 +0,0 @@ - -#include "kern/print.hpp" - -#include - -namespace teachos -{ - namespace - { - constinit auto noop = [](std::string_view) {}; - - constinit auto current_print_handler = static_cast(noop); - constinit auto current_println_handler = static_cast(noop); - constinit auto current_print_error_handler = static_cast(noop); - constinit auto current_println_error_handler = static_cast(noop); - } // namespace - - auto print(std::string_view text) -> void { current_print_handler(text); } - auto println(std::string_view text) -> void { current_println_handler(text); } - auto print_error(std::string_view text) -> void { current_print_error_handler(text); } - auto println_error(std::string_view text) -> void { current_println_error_handler(text); } - - auto set_print_handler(print_handler handler) -> print_handler * - { - auto old = current_print_handler; - current_print_handler = handler; - return old; - } - - auto set_println_handler(println_handler handler) -> print_handler * - { - auto old = current_println_handler; - current_println_handler = handler; - return old; - } - - auto set_print_error_handler(print_handler handler) -> print_handler * - { - auto old = current_print_error_handler; - current_print_error_handler = handler; - return old; - } - - auto set_println_error_handler(println_handler handler) -> print_handler * - { - auto old = current_println_error_handler; - current_println_error_handler = handler; - return old; - } - -} // namespace teachos -- cgit v1.2.3