From 1684e1d35cf9d6a06ce5e71066885d24d19fe563 Mon Sep 17 00:00:00 2001 From: TuxSH Date: Sun, 4 Nov 2018 18:02:43 +0100 Subject: [PATCH] Move KAutoObject.hpp to core/ --- .../include/mesosphere/{kresources => core}/KAutoObject.hpp | 0 mesosphere/include/mesosphere/interfaces/ILimitedResource.hpp | 2 +- mesosphere/include/mesosphere/interrupts/KWorkQueue.hpp | 2 +- mesosphere/include/mesosphere/processes/KHandleTable.hpp | 2 +- mesosphere/include/mesosphere/processes/KProcess.hpp | 2 +- mesosphere/source/{kresources => core}/KAutoObject.cpp | 2 +- 6 files changed, 5 insertions(+), 5 deletions(-) rename mesosphere/include/mesosphere/{kresources => core}/KAutoObject.hpp (100%) rename mesosphere/source/{kresources => core}/KAutoObject.cpp (55%) diff --git a/mesosphere/include/mesosphere/kresources/KAutoObject.hpp b/mesosphere/include/mesosphere/core/KAutoObject.hpp similarity index 100% rename from mesosphere/include/mesosphere/kresources/KAutoObject.hpp rename to mesosphere/include/mesosphere/core/KAutoObject.hpp diff --git a/mesosphere/include/mesosphere/interfaces/ILimitedResource.hpp b/mesosphere/include/mesosphere/interfaces/ILimitedResource.hpp index 34c4ed65c..3d172454a 100644 --- a/mesosphere/include/mesosphere/interfaces/ILimitedResource.hpp +++ b/mesosphere/include/mesosphere/interfaces/ILimitedResource.hpp @@ -1,7 +1,7 @@ #pragma once // circular dep: #include "resource_limit.h" -#include +#include #include namespace mesosphere diff --git a/mesosphere/include/mesosphere/interrupts/KWorkQueue.hpp b/mesosphere/include/mesosphere/interrupts/KWorkQueue.hpp index 08b8848b0..72f7e959c 100644 --- a/mesosphere/include/mesosphere/interrupts/KWorkQueue.hpp +++ b/mesosphere/include/mesosphere/interrupts/KWorkQueue.hpp @@ -1,7 +1,7 @@ #pragma once #include -#include +#include namespace mesosphere { diff --git a/mesosphere/include/mesosphere/processes/KHandleTable.hpp b/mesosphere/include/mesosphere/processes/KHandleTable.hpp index ddc52cc01..01974e179 100644 --- a/mesosphere/include/mesosphere/processes/KHandleTable.hpp +++ b/mesosphere/include/mesosphere/processes/KHandleTable.hpp @@ -2,7 +2,7 @@ #include #include -#include +#include #include #include diff --git a/mesosphere/include/mesosphere/processes/KProcess.hpp b/mesosphere/include/mesosphere/processes/KProcess.hpp index 70949bb0e..4817e0f0d 100644 --- a/mesosphere/include/mesosphere/processes/KProcess.hpp +++ b/mesosphere/include/mesosphere/processes/KProcess.hpp @@ -4,7 +4,7 @@ class KThread; class KResourceLimit; #include -#include +#include #include namespace mesosphere diff --git a/mesosphere/source/kresources/KAutoObject.cpp b/mesosphere/source/core/KAutoObject.cpp similarity index 55% rename from mesosphere/source/kresources/KAutoObject.cpp rename to mesosphere/source/core/KAutoObject.cpp index f31f0ea45..0d4961bbe 100644 --- a/mesosphere/source/kresources/KAutoObject.cpp +++ b/mesosphere/source/core/KAutoObject.cpp @@ -1,4 +1,4 @@ -#include +#include namespace mesosphere {