projects
/
reactos.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
[NTOSKRNL]
[reactos.git]
/
reactos
/
ntoskrnl
/
ke
/
i386
/
kiinit.c
diff --git
a/reactos/ntoskrnl/ke/i386/kiinit.c
b/reactos/ntoskrnl/ke/i386/kiinit.c
index
535d6d2
..
45b25ed
100644
(file)
--- a/
reactos/ntoskrnl/ke/i386/kiinit.c
+++ b/
reactos/ntoskrnl/ke/i386/kiinit.c
@@
-264,19
+264,14
@@
KiInitMachineDependent(VOID)
if (KeFeatureBits & KF_FXSR)
{
/* Get the current thread NPX state */
if (KeFeatureBits & KF_FXSR)
{
/* Get the current thread NPX state */
- FxSaveArea = (PVOID)
- ((ULONG_PTR)KeGetCurrentThread()->InitialStack -
- NPX_FRAME_LENGTH);
+ FxSaveArea = KiGetThreadNpxArea(KeGetCurrentThread());
/* Clear initial MXCsr mask */
FxSaveArea->U.FxArea.MXCsrMask = 0;
/* Save the current NPX State */
/* Clear initial MXCsr mask */
FxSaveArea->U.FxArea.MXCsrMask = 0;
/* Save the current NPX State */
-#ifdef __GNUC__
- asm volatile("fxsave %0\n\t" : "=m" (*FxSaveArea));
-#else
- __asm fxsave [FxSaveArea]
-#endif
+ Ke386SaveFpuState(FxSaveArea);
+
/* Check if the current mask doesn't match the reserved bits */
if (FxSaveArea->U.FxArea.MXCsrMask != 0)
{
/* Check if the current mask doesn't match the reserved bits */
if (FxSaveArea->U.FxArea.MXCsrMask != 0)
{