diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-07-14 19:30:03 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-07-14 19:30:03 +0200 |
| commit | d6735726d9cc6e98142e94001250076592279d36 (patch) | |
| tree | 95d308a027495790af57479cacb064badea334d0 /arch/x86_64/kapi | |
| parent | cdb8a0928ddfe626a1ac0acd1ae63bc8e5b77355 (diff) | |
| parent | 9558074af8ceef4dc2c3b168a0263775f8a377e0 (diff) | |
| download | kernel-d6735726d9cc6e98142e94001250076592279d36.tar.xz kernel-d6735726d9cc6e98142e94001250076592279d36.zip | |
Merge branch 'fmorgner/develop/kstd-system-error' into 'develop'
kstd: implement system_error infrastructure
See merge request teachos/kernel!54
Diffstat (limited to 'arch/x86_64/kapi')
| -rw-r--r-- | arch/x86_64/kapi/boot_modules.cpp | 2 | ||||
| -rw-r--r-- | arch/x86_64/kapi/cpu.cpp | 4 | ||||
| -rw-r--r-- | arch/x86_64/kapi/memory.cpp | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/arch/x86_64/kapi/boot_modules.cpp b/arch/x86_64/kapi/boot_modules.cpp index fb6bf465..9ca867a5 100644 --- a/arch/x86_64/kapi/boot_modules.cpp +++ b/arch/x86_64/kapi/boot_modules.cpp @@ -9,7 +9,7 @@ #include <kapi/memory.hpp> #include <kapi/system.hpp> -#include <kstd/print> +#include <kstd/print.hpp> #include <multiboot2/information.hpp> diff --git a/arch/x86_64/kapi/cpu.cpp b/arch/x86_64/kapi/cpu.cpp index 40dc2281..70cd3635 100644 --- a/arch/x86_64/kapi/cpu.cpp +++ b/arch/x86_64/kapi/cpu.cpp @@ -11,8 +11,8 @@ #include <acpi/acpi.hpp> -#include <kstd/memory> -#include <kstd/print> +#include <kstd/memory.hpp> +#include <kstd/print.hpp> #include <atomic> #include <ranges> diff --git a/arch/x86_64/kapi/memory.cpp b/arch/x86_64/kapi/memory.cpp index 5b870d51..a6f84f07 100644 --- a/arch/x86_64/kapi/memory.cpp +++ b/arch/x86_64/kapi/memory.cpp @@ -12,8 +12,8 @@ #include <kapi/boot.hpp> #include <kapi/system.hpp> -#include <kstd/print> -#include <kstd/units> +#include <kstd/print.hpp> +#include <kstd/units.hpp> #include <multiboot2/constants.hpp> #include <multiboot2/information.hpp> |
