1

Add empty TimeService

This commit is contained in:
2022-12-08 02:20:20 +01:00
parent 663fabf074
commit 4b84c254ff
3 changed files with 10 additions and 1 deletions

View File

@ -1,9 +1,9 @@
cmake_minimum_required(VERSION 3.14)
target_sources(kernel PUBLIC
${CHURLOS_SRC_DIR}/kernel/service/Service.cpp
${CHURLOS_SRC_DIR}/kernel/service/EventService.cpp
${CHURLOS_SRC_DIR}/kernel/service/InterruptService.cpp
${CHURLOS_SRC_DIR}/kernel/service/MemoryService.cpp
${CHURLOS_SRC_DIR}/kernel/service/SchedulerService.cpp
${CHURLOS_SRC_DIR}/kernel/service/TimeService.cpp
)

View File

@ -0,0 +1 @@
#include "TimeService.h"

View File

@ -0,0 +1,8 @@
//
// Created by christoph on 07.12.22.
//
#ifndef CHURLOS_TIMESERVICE_H
#define CHURLOS_TIMESERVICE_H
#endif //CHURLOS_TIMESERVICE_H