mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 16:02:56 +00:00
[NTOSKRNL]
Stub out NtSetSystemInformation - SystemLoadGdiDriverInSystemSpaceInformation Stub out NtQuerySystemInformation - SystemNumaProcessorMap svn path=/trunk/; revision=68141
This commit is contained in:
parent
4bcdd47a49
commit
5ee87f9ad5
1 changed files with 21 additions and 1 deletions
|
@ -2156,6 +2156,24 @@ QSI_DEF(SystemSessionProcessesInformation)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Query/Set Calls Table */
|
/* Query/Set Calls Table */
|
||||||
typedef
|
typedef
|
||||||
struct _QSSI_CALLS
|
struct _QSSI_CALLS
|
||||||
|
@ -2232,7 +2250,9 @@ CallQS [] =
|
||||||
SI_QX(SystemRangeStartInformation),
|
SI_QX(SystemRangeStartInformation),
|
||||||
SI_QS(SystemVerifierInformation),
|
SI_QS(SystemVerifierInformation),
|
||||||
SI_XS(SystemAddVerifier),
|
SI_XS(SystemAddVerifier),
|
||||||
SI_QX(SystemSessionProcessesInformation)
|
SI_QX(SystemSessionProcessesInformation),
|
||||||
|
SI_XS(SystemLoadGdiDriverInSystemSpaceInformation),
|
||||||
|
SI_QX(SystemNumaProcessorMap)
|
||||||
};
|
};
|
||||||
|
|
||||||
C_ASSERT(SystemBasicInformation == 0);
|
C_ASSERT(SystemBasicInformation == 0);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue