mirror of
https://github.com/reactos/reactos.git
synced 2024-11-27 13:33:32 +08:00
[NTOSKRNL]
Fix amd64 build svn path=/trunk/; revision=53455
This commit is contained in:
parent
41523bb55f
commit
79b52fa59a
@ -481,11 +481,11 @@ KiSaveProcessorControlState(OUT PKPROCESSOR_STATE ProcessorState)
|
||||
__sidt(&ProcessorState->SpecialRegisters.Idtr.Limit);
|
||||
|
||||
// __stmxcsr(&ProcessorState->SpecialRegisters.MxCsr);
|
||||
// ProcessorState->SpecialRegisters.DebugControl =
|
||||
// ProcessorState->SpecialRegisters.LastBranchToRip =
|
||||
// ProcessorState->SpecialRegisters.LastBranchFromRip =
|
||||
// ProcessorState->SpecialRegisters.LastExceptionToRip =
|
||||
// ProcessorState->SpecialRegisters.LastExceptionFromRip =
|
||||
// ProcessorState->SpecialRegisters.DebugControl =
|
||||
// ProcessorState->SpecialRegisters.LastBranchToRip =
|
||||
// ProcessorState->SpecialRegisters.LastBranchFromRip =
|
||||
// ProcessorState->SpecialRegisters.LastExceptionToRip =
|
||||
// ProcessorState->SpecialRegisters.LastExceptionFromRip =
|
||||
|
||||
/* Save MSRs */
|
||||
ProcessorState->SpecialRegisters.MsrGsBase = __readmsr(X86_MSR_GSBASE);
|
||||
@ -528,18 +528,18 @@ KeQueryActiveProcessors(VOID)
|
||||
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
KeSaveFloatingPointState(OUT PKFLOATING_SAVE Save)
|
||||
KxSaveFloatingPointState(OUT PKFLOATING_SAVE FloatingState)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return STATUS_UNSUCCESSFUL;
|
||||
UNREFERENCED_PARAMETER(FloatingState);
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
KeRestoreFloatingPointState(IN PKFLOATING_SAVE Save)
|
||||
KxRestoreFloatingPointState(IN PKFLOATING_SAVE FloatingState)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return STATUS_UNSUCCESSFUL;
|
||||
UNREFERENCED_PARAMETER(FloatingState);
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
BOOLEAN
|
||||
|
@ -672,10 +672,12 @@
|
||||
@ stdcall KeRemoveQueueDpc(ptr)
|
||||
@ stdcall KeRemoveSystemServiceTable(long)
|
||||
@ stdcall KeResetEvent(ptr)
|
||||
@ stdcall KeRestoreFloatingPointState(ptr)
|
||||
@ stdcall -arch=i386 KeRestoreFloatingPointState(ptr)
|
||||
@ stdcall -arch=x86_64 KeRestoreFloatingPointState(ptr) KxRestoreFloatingPointState
|
||||
@ stdcall KeRevertToUserAffinityThread()
|
||||
@ stdcall KeRundownQueue(ptr)
|
||||
@ stdcall KeSaveFloatingPointState(ptr)
|
||||
@ stdcall -arch=i386 KeSaveFloatingPointState(ptr)
|
||||
@ stdcall -arch=x86_64 KeSaveFloatingPointState(ptr) KxSaveFloatingPointState
|
||||
@ cdecl KeSaveStateForHibernate(ptr)
|
||||
@ extern KeServiceDescriptorTable
|
||||
@ stdcall KeSetAffinityThread(ptr long)
|
||||
|
Loading…
Reference in New Issue
Block a user