Add stub for System Service Descriptor Table accessor routine
All checks were successful
Builds / ExectOS (amd64, debug) (push) Successful in 29s
Builds / ExectOS (i686, debug) (push) Successful in 28s
Builds / ExectOS (amd64, release) (push) Successful in 38s
Builds / ExectOS (i686, release) (push) Successful in 37s

This commit is contained in:
2026-06-12 23:16:20 +02:00
parent 2f5902119d
commit 97703c7932
4 changed files with 52 additions and 0 deletions

25
xtoskrnl/ke/sysserv.cc Normal file
View File

@@ -0,0 +1,25 @@
/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: xtoskrnl/ke/sysserv.cc
* DESCRIPTION: System Services Descriptor Table
* DEVELOPERS: Aiken Harris <harraiken91@gmail.com>
*/
#include <xtos.hh>
/**
* Retrieves a pointer to the System Services Descriptor Table.
*
* @return This routine returns a pointer to the system services descriptor table.
*
* @since XT 1.0
*/
XTAPI
PKSERVICE_DESCRIPTOR_TABLE
KE::SystemServices::GetSystemServicesDescriptorTable(VOID)
{
/* Return NULLPTR as the system services table is not yet implemented */
return NULLPTR;
}