From 99a75a4a7650d489292f51d145fe600f29d4851e Mon Sep 17 00:00:00 2001 From: Drew Galbraith Date: Wed, 22 Nov 2023 13:56:40 -0800 Subject: [PATCH] [Mammoth] Move request/response context to ipc/ folder. --- lib/mammoth/ipc/endpoint_server.h | 4 ++-- lib/mammoth/{include/mammoth => ipc}/request_context.h | 0 lib/mammoth/{include/mammoth => ipc}/response_context.h | 0 sys/denali/ahci/command.h | 2 -- 4 files changed, 2 insertions(+), 4 deletions(-) rename lib/mammoth/{include/mammoth => ipc}/request_context.h (100%) rename lib/mammoth/{include/mammoth => ipc}/response_context.h (100%) diff --git a/lib/mammoth/ipc/endpoint_server.h b/lib/mammoth/ipc/endpoint_server.h index cb18949..44a70bc 100644 --- a/lib/mammoth/ipc/endpoint_server.h +++ b/lib/mammoth/ipc/endpoint_server.h @@ -5,8 +5,8 @@ #include #include "mammoth/ipc/endpoint_client.h" -#include "mammoth/request_context.h" -#include "mammoth/response_context.h" +#include "mammoth/ipc/request_context.h" +#include "mammoth/ipc/response_context.h" #include "mammoth/thread.h" class EndpointServer { diff --git a/lib/mammoth/include/mammoth/request_context.h b/lib/mammoth/ipc/request_context.h similarity index 100% rename from lib/mammoth/include/mammoth/request_context.h rename to lib/mammoth/ipc/request_context.h diff --git a/lib/mammoth/include/mammoth/response_context.h b/lib/mammoth/ipc/response_context.h similarity index 100% rename from lib/mammoth/include/mammoth/response_context.h rename to lib/mammoth/ipc/response_context.h diff --git a/sys/denali/ahci/command.h b/sys/denali/ahci/command.h index 2f85d82..8cb4b9c 100644 --- a/sys/denali/ahci/command.h +++ b/sys/denali/ahci/command.h @@ -1,7 +1,5 @@ #pragma once -#include -#include #include #include