summaryrefslogtreecommitdiffhomepage
path: root/dev/ZKA/Sources/ThreadScheduler.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'dev/ZKA/Sources/ThreadScheduler.cxx')
-rw-r--r--dev/ZKA/Sources/ThreadScheduler.cxx35
1 files changed, 0 insertions, 35 deletions
diff --git a/dev/ZKA/Sources/ThreadScheduler.cxx b/dev/ZKA/Sources/ThreadScheduler.cxx
deleted file mode 100644
index a38ff9bc..00000000
--- a/dev/ZKA/Sources/ThreadScheduler.cxx
+++ /dev/null
@@ -1,35 +0,0 @@
-/* -------------------------------------------
-
- Copyright ZKA Technologies.
-
-------------------------------------------- */
-
-#include <KernelKit/ProcessScheduler.hxx>
-#include <KernelKit/MP.hxx>
-
-namespace Kernel::Detail
-{
- /// \brief Process thread information.
- struct THREAD_HEADER_BLOCK final
- {
- STATIC constexpr SizeT cMaxLen = 256;
-
- // Status
- Char fName[cMaxLen] = { "THREAD #0 (PROCESS 0)" };
-
- ProcessStatus fThreadStatus;
-
- // Information
- Int64 fThreadID;
-
- // Code buffers.
- UIntPtr fCode;
- UIntPtr fStack;
- UIntPtr fBSS;
- UIntPtr fProcessHeader;
-
- // CG video buffer and it's size.
- UIntPtr fTGB;
- UIntPtr fTGBSize;
- };
-}