From 51c096c743e147ae4f07b6a9a1b1b39df7b30e66 Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 20 Oct 2022 05:15:25 +0300 Subject: [PATCH] Stub tasking files --- Tasking/Mono.cpp | 2 ++ Tasking/Multi.cpp | 2 ++ include/task.hpp | 8 ++++++++ 3 files changed, 12 insertions(+) create mode 100644 Tasking/Mono.cpp create mode 100644 Tasking/Multi.cpp create mode 100644 include/task.hpp diff --git a/Tasking/Mono.cpp b/Tasking/Mono.cpp new file mode 100644 index 0000000..597b435 --- /dev/null +++ b/Tasking/Mono.cpp @@ -0,0 +1,2 @@ +#include + diff --git a/Tasking/Multi.cpp b/Tasking/Multi.cpp new file mode 100644 index 0000000..597b435 --- /dev/null +++ b/Tasking/Multi.cpp @@ -0,0 +1,2 @@ +#include + diff --git a/include/task.hpp b/include/task.hpp new file mode 100644 index 0000000..5d163be --- /dev/null +++ b/include/task.hpp @@ -0,0 +1,8 @@ +#ifndef __FENNIX_KERNEL_TASKING_H__ +#define __FENNIX_KERNEL_TASKING_H__ + +#include + + + +#endif // !__FENNIX_KERNEL_TASKING_H__