aboutsummaryrefslogtreecommitdiff
path: root/kapi
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2026-01-16 13:55:51 +0100
committerFelix Morgner <felix.morgner@ost.ch>2026-01-16 13:55:51 +0100
commit159bdd2cac3f967c31c2f416fbc542e0277ec860 (patch)
tree328f69d3490a4a7e95bb86fe2ccdc7a8bd877890 /kapi
parentf3362a5e486582854c4e85ea54d2357d3b3b2f60 (diff)
downloadteachos-159bdd2cac3f967c31c2f416fbc542e0277ec860.tar.xz
teachos-159bdd2cac3f967c31c2f416fbc542e0277ec860.zip
kapi/system: introduce memory_initialized hook
Diffstat (limited to 'kapi')
-rw-r--r--kapi/include/kapi/system.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/kapi/include/kapi/system.hpp b/kapi/include/kapi/system.hpp
index 6c5683a..e5c43c5 100644
--- a/kapi/include/kapi/system.hpp
+++ b/kapi/include/kapi/system.hpp
@@ -15,6 +15,10 @@ namespace kapi::system
//! @param message The message associated with the panic
[[noreturn]] auto panic(std::string_view message, std::source_location = std::source_location::current()) -> void;
+ //! @qualifier platform-defined
+ //! A hook that runs once the memory subsystem has been initialized.
+ auto memory_initialized() -> void;
+
} // namespace kapi::system
#endif