From 5f109c0e34b2ce099b2946e1414f3a8115a49202 Mon Sep 17 00:00:00 2001 From: DH Date: Sat, 11 Oct 2025 16:00:40 +0300 Subject: [PATCH] fix includes --- kernel/orbis/include/orbis/thread/Process.hpp | 5 ++--- kernel/orbis/include/orbis/thread/Thread.hpp | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/kernel/orbis/include/orbis/thread/Process.hpp b/kernel/orbis/include/orbis/thread/Process.hpp index 8fef4927f..af30c9df2 100644 --- a/kernel/orbis/include/orbis/thread/Process.hpp +++ b/kernel/orbis/include/orbis/thread/Process.hpp @@ -1,9 +1,8 @@ #pragma once -#include "KernelAllocator.hpp" -#include "KernelObject.hpp" -#include "kernel/KernelObject.hpp" #include "orbis-config.hpp" +#include "../KernelAllocator.hpp" +#include "../KernelObject.hpp" #include "../event.hpp" #include "../evf.hpp" #include "../ipmi.hpp" diff --git a/kernel/orbis/include/orbis/thread/Thread.hpp b/kernel/orbis/include/orbis/thread/Thread.hpp index e8a012608..7f0d74071 100644 --- a/kernel/orbis/include/orbis/thread/Thread.hpp +++ b/kernel/orbis/include/orbis/thread/Thread.hpp @@ -1,6 +1,5 @@ #pragma once -#include "KernelObject.hpp" #include "ThreadState.hpp" #include "cpuset.hpp" #include "orbis-config.hpp" @@ -8,6 +7,7 @@ #include "types.hpp" #include "../KernelAllocator.hpp" +#include "../KernelObject.hpp" #include "../ucontext.hpp" #include "rx/SharedAtomic.hpp" #include "rx/SharedCV.hpp"