summaryrefslogtreecommitdiffhomepage
path: root/dev/ZKA/Sources
diff options
context:
space:
mode:
authorAmlal <amlal@el-mahrouss-logic.com>2024-09-11 11:45:52 +0200
committerAmlal <amlal@el-mahrouss-logic.com>2024-09-11 11:45:52 +0200
commit8b6cc0cbe5e19e8114a65785e24bbcf4d22e0d2f (patch)
tree3713620f703318ab9fb9ad6906263e68c64ee789 /dev/ZKA/Sources
parent56fcf152004c913bddd19b6eeac1f96eb2c9b869 (diff)
IMP: Better architecture for task scheduling.
Signed-off-by: Amlal <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'dev/ZKA/Sources')
-rw-r--r--dev/ZKA/Sources/ThreadLocalStorage.cxx2
-rw-r--r--dev/ZKA/Sources/UserProcessScheduler.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/dev/ZKA/Sources/ThreadLocalStorage.cxx b/dev/ZKA/Sources/ThreadLocalStorage.cxx
index 825761de..ed723c06 100644
--- a/dev/ZKA/Sources/ThreadLocalStorage.cxx
+++ b/dev/ZKA/Sources/ThreadLocalStorage.cxx
@@ -33,7 +33,7 @@ Boolean tls_check_tib(THREAD_INFORMATION_BLOCK* the_tib)
!the_tib->f_ThreadRecord)
return false;
- Encoder encoder;
+ IEncoderObject encoder;
const char* tibAsBytes = encoder.AsBytes(the_tib);
kcout << "checking for a valid cookie inside the TIB...\r";
diff --git a/dev/ZKA/Sources/UserProcessScheduler.cxx b/dev/ZKA/Sources/UserProcessScheduler.cxx
index 00f314d1..2d4c3836 100644
--- a/dev/ZKA/Sources/UserProcessScheduler.cxx
+++ b/dev/ZKA/Sources/UserProcessScheduler.cxx
@@ -3,7 +3,7 @@
Copyright ZKA Technologies.
FILE: UserProcessScheduler.cxx
- PURPOSE: User sided process scheduler.
+ PURPOSE: Low Exception Process scheduler.
------------------------------------------- */