From f3dbf68f7c03d0863d380173ff842b3ec44c6760 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 11 Oct 2021 20:03:29 +0200 Subject: [PATCH] moved command executor --- .../src/fsfw_hal}/linux/CommandExecutor.cpp | 0 .../src/fsfw_hal}/linux/CommandExecutor.h | 0 src/fsfw/osal/linux/CMakeLists.txt | 34 +++++++++---------- 3 files changed, 16 insertions(+), 18 deletions(-) rename {src/fsfw/osal => hal/src/fsfw_hal}/linux/CommandExecutor.cpp (100%) rename {src/fsfw/osal => hal/src/fsfw_hal}/linux/CommandExecutor.h (100%) diff --git a/src/fsfw/osal/linux/CommandExecutor.cpp b/hal/src/fsfw_hal/linux/CommandExecutor.cpp similarity index 100% rename from src/fsfw/osal/linux/CommandExecutor.cpp rename to hal/src/fsfw_hal/linux/CommandExecutor.cpp diff --git a/src/fsfw/osal/linux/CommandExecutor.h b/hal/src/fsfw_hal/linux/CommandExecutor.h similarity index 100% rename from src/fsfw/osal/linux/CommandExecutor.h rename to hal/src/fsfw_hal/linux/CommandExecutor.h diff --git a/src/fsfw/osal/linux/CMakeLists.txt b/src/fsfw/osal/linux/CMakeLists.txt index 63206cb2..dcdade67 100644 --- a/src/fsfw/osal/linux/CMakeLists.txt +++ b/src/fsfw/osal/linux/CMakeLists.txt @@ -1,21 +1,19 @@ -target_sources(${LIB_FSFW_NAME} - PRIVATE - Clock.cpp - BinarySemaphore.cpp - CountingSemaphore.cpp - FixedTimeslotTask.cpp - InternalErrorCodes.cpp - MessageQueue.cpp - Mutex.cpp - MutexFactory.cpp - PeriodicPosixTask.cpp - PosixThread.cpp - QueueFactory.cpp - SemaphoreFactory.cpp - TaskFactory.cpp - tcpipHelpers.cpp - unixUtility.cpp - CommandExecutor.cpp +target_sources(${LIB_FSFW_NAME} PRIVATE + Clock.cpp + BinarySemaphore.cpp + CountingSemaphore.cpp + FixedTimeslotTask.cpp + InternalErrorCodes.cpp + MessageQueue.cpp + Mutex.cpp + MutexFactory.cpp + PeriodicPosixTask.cpp + PosixThread.cpp + QueueFactory.cpp + SemaphoreFactory.cpp + TaskFactory.cpp + tcpipHelpers.cpp + unixUtility.cpp ) find_package(Threads REQUIRED)