mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
Fix up the indentation.
svn path=/trunk/; revision=18042
This commit is contained in:
parent
2f370af826
commit
ceb0f5f1eb
1 changed files with 53 additions and 52 deletions
|
@ -32,11 +32,11 @@ NtContinue (
|
|||
PFX_SAVE_AREA FxSaveArea;
|
||||
KIRQL oldIrql;
|
||||
|
||||
#ifndef NDEBUG
|
||||
DPRINT("NtContinue: Context: Eip=0x%x, Esp=0x%x\n", Context->Eip, Context->Esp );
|
||||
PULONG Frame = 0;
|
||||
__asm__("mov %%ebp, %%ebx" : "=b" (Frame) : );
|
||||
DPRINT( "NtContinue(): Ebp=%x, prev/TF=%x/%x\n", Frame, Frame[0], TrapFrame );
|
||||
#ifndef NDEBUG
|
||||
KeRosDumpStackFrames(NULL,5);
|
||||
#endif
|
||||
|
||||
|
@ -59,7 +59,8 @@ NtContinue (
|
|||
*/
|
||||
KeContextToTrapFrame(Context, TrapFrame);
|
||||
|
||||
/* Put the floating point context into the thread's FX_SAVE_AREA
|
||||
/*
|
||||
* Put the floating point context into the thread's FX_SAVE_AREA
|
||||
* and make sure it is reloaded when needed.
|
||||
*/
|
||||
FxSaveArea = (PFX_SAVE_AREA)((ULONG_PTR)Thread->InitialStack - sizeof(FX_SAVE_AREA));
|
||||
|
|
Loading…
Reference in a new issue