From 04572e7a4299ed9dc412db7c5baeec9eabe464a3 Mon Sep 17 00:00:00 2001 From: Amlal EL Mahrouss Date: Fri, 2 Aug 2024 11:00:13 +0200 Subject: [IMP] New PROCESS_HEADER_BLOCK structure instead of ProcessHeader. [IMP] PEF_SHARED_OBJECT_TRAITS with IsValid() method. [IMP] HTTPS and ODBC for URLs support. Signed-off-by: Amlal EL Mahrouss --- Kernel/Sources/CodeManager.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Kernel/Sources/CodeManager.cxx') diff --git a/Kernel/Sources/CodeManager.cxx b/Kernel/Sources/CodeManager.cxx index 3830e922..f48e8324 100644 --- a/Kernel/Sources/CodeManager.cxx +++ b/Kernel/Sources/CodeManager.cxx @@ -19,11 +19,11 @@ namespace Kernel if (!main) return false; - ProcessHeader proc((VoidPtr)main); - proc.Kind = ProcessHeader::kAppKind; + PROCESS_HEADER_BLOCK proc((VoidPtr)main); + proc.Kind = PROCESS_HEADER_BLOCK::kAppKind; rt_copy_memory((VoidPtr)processName, proc.Name, rt_string_len(proc.Name)); - Ref refProc = proc; + Ref refProc = proc; return ProcessScheduler::The().Leak().Add(refProc); } -- cgit v1.2.3