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 | |
| 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')
| -rw-r--r-- | arch/x86_64/arch/cpu/control_register.hpp | 2 | ||||
| -rw-r--r-- | arch/x86_64/arch/cpu/initialization.cpp | 2 | ||||
| -rw-r--r-- | arch/x86_64/arch/cpu/interrupts.cpp | 2 | ||||
| -rw-r--r-- | arch/x86_64/arch/cpu/model_specific_register.hpp | 2 | ||||
| -rw-r--r-- | arch/x86_64/arch/devices/init.cpp | 4 | ||||
| -rw-r--r-- | arch/x86_64/arch/devices/local_apic.cpp | 2 | ||||
| -rw-r--r-- | arch/x86_64/arch/memory/kernel_mapper.cpp | 4 | ||||
| -rw-r--r-- | arch/x86_64/arch/memory/page_table.hpp | 4 | ||||
| -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 |
11 files changed, 16 insertions, 16 deletions
diff --git a/arch/x86_64/arch/cpu/control_register.hpp b/arch/x86_64/arch/cpu/control_register.hpp index 9cedc35a..ad307081 100644 --- a/arch/x86_64/arch/cpu/control_register.hpp +++ b/arch/x86_64/arch/cpu/control_register.hpp @@ -5,7 +5,7 @@ #include <kapi/memory.hpp> -#include <kstd/ext/bitfield_enum> +#include <kstd/ext/bitfield_enum.hpp> #include <cstdint> #include <string_view> diff --git a/arch/x86_64/arch/cpu/initialization.cpp b/arch/x86_64/arch/cpu/initialization.cpp index 1be9c821..49870eb7 100644 --- a/arch/x86_64/arch/cpu/initialization.cpp +++ b/arch/x86_64/arch/cpu/initialization.cpp @@ -6,7 +6,7 @@ #include <arch/cpu/segment_descriptor.hpp> #include <arch/cpu/task_state_segment.hpp> -#include <kstd/print> +#include <kstd/print.hpp> #include <bit> #include <cstdint> diff --git a/arch/x86_64/arch/cpu/interrupts.cpp b/arch/x86_64/arch/cpu/interrupts.cpp index f40422fc..99186e2d 100644 --- a/arch/x86_64/arch/cpu/interrupts.cpp +++ b/arch/x86_64/arch/cpu/interrupts.cpp @@ -7,7 +7,7 @@ #include <kapi/interrupts.hpp> #include <kapi/memory.hpp> -#include <kstd/print> +#include <kstd/print.hpp> #include <cstdint> diff --git a/arch/x86_64/arch/cpu/model_specific_register.hpp b/arch/x86_64/arch/cpu/model_specific_register.hpp index bd4aff9d..cf07737f 100644 --- a/arch/x86_64/arch/cpu/model_specific_register.hpp +++ b/arch/x86_64/arch/cpu/model_specific_register.hpp @@ -3,7 +3,7 @@ // IWYU pragma: private, include <x86_64/cpu/registers.hpp> -#include <kstd/ext/bitfield_enum> +#include <kstd/ext/bitfield_enum.hpp> #include <bit> #include <cstdint> diff --git a/arch/x86_64/arch/devices/init.cpp b/arch/x86_64/arch/devices/init.cpp index c30e8cf0..134d6dac 100644 --- a/arch/x86_64/arch/devices/init.cpp +++ b/arch/x86_64/arch/devices/init.cpp @@ -10,8 +10,8 @@ #include <acpi/acpi.hpp> -#include <kstd/memory> -#include <kstd/print> +#include <kstd/memory.hpp> +#include <kstd/print.hpp> #include <cstdint> #include <utility> diff --git a/arch/x86_64/arch/devices/local_apic.cpp b/arch/x86_64/arch/devices/local_apic.cpp index 660921bd..b481a667 100644 --- a/arch/x86_64/arch/devices/local_apic.cpp +++ b/arch/x86_64/arch/devices/local_apic.cpp @@ -3,7 +3,7 @@ #include <kapi/devices.hpp> #include <kapi/memory.hpp> -#include <kstd/print> +#include <kstd/print.hpp> #include <cstddef> #include <cstdint> diff --git a/arch/x86_64/arch/memory/kernel_mapper.cpp b/arch/x86_64/arch/memory/kernel_mapper.cpp index 74272a0f..0ddf08dd 100644 --- a/arch/x86_64/arch/memory/kernel_mapper.cpp +++ b/arch/x86_64/arch/memory/kernel_mapper.cpp @@ -8,8 +8,8 @@ #include <elf/format.hpp> #include <elf/section_header.hpp> -#include <kstd/print> -#include <kstd/units> +#include <kstd/print.hpp> +#include <kstd/units.hpp> #include <multiboot2/information.hpp> diff --git a/arch/x86_64/arch/memory/page_table.hpp b/arch/x86_64/arch/memory/page_table.hpp index ce3d3a14..f288e3da 100644 --- a/arch/x86_64/arch/memory/page_table.hpp +++ b/arch/x86_64/arch/memory/page_table.hpp @@ -3,8 +3,8 @@ #include <kapi/memory.hpp> -#include <kstd/ext/bitfield_enum> -#include <kstd/units> +#include <kstd/ext/bitfield_enum.hpp> +#include <kstd/units.hpp> #include <array> #include <cstddef> 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> |
