Author: pschweitzer Date: Sun Jun 14 19:27:19 2015 New Revision: 68141
URL: http://svn.reactos.org/svn/reactos?rev=68141&view=rev Log: [NTOSKRNL] Stub out NtSetSystemInformation - SystemLoadGdiDriverInSystemSpaceInformation Stub out NtQuerySystemInformation - SystemNumaProcessorMap
Modified: trunk/reactos/ntoskrnl/ex/sysinfo.c
Modified: trunk/reactos/ntoskrnl/ex/sysinfo.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ex/sysinfo.c?rev=6... ============================================================================== --- trunk/reactos/ntoskrnl/ex/sysinfo.c [iso-8859-1] (original) +++ trunk/reactos/ntoskrnl/ex/sysinfo.c [iso-8859-1] Sun Jun 14 19:27:19 2015 @@ -2152,6 +2152,24 @@ { /* FIXME */ DPRINT1("NtQuerySystemInformation - SystemSessionProcessInformation not implemented\n"); + return STATUS_NOT_IMPLEMENTED; +} + + +/* Class 54 - Load & map in system space */ +SSI_DEF(SystemLoadGdiDriverInSystemSpaceInformation) +{ + /* FIXME */ + DPRINT1("NtSetSystemInformation - SystemLoadGdiDriverInSystemSpaceInformation not implemented\n"); + return STATUS_NOT_IMPLEMENTED; +} + + +/* Class 55 - NUMA processor information */ +QSI_DEF(SystemNumaProcessorMap) +{ + /* FIXME */ + DPRINT1("NtQuerySystemInformation - SystemNumaProcessorMap not implemented\n"); return STATUS_NOT_IMPLEMENTED; }
@@ -2232,7 +2250,9 @@ SI_QX(SystemRangeStartInformation), SI_QS(SystemVerifierInformation), SI_XS(SystemAddVerifier), - SI_QX(SystemSessionProcessesInformation) + SI_QX(SystemSessionProcessesInformation), + SI_XS(SystemLoadGdiDriverInSystemSpaceInformation), + SI_QX(SystemNumaProcessorMap) };
C_ASSERT(SystemBasicInformation == 0);