mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Err, actually deliver APCs when returning from systemcalls... fixes bug 810
svn path=/trunk/; revision=18109
This commit is contained in:
parent
532121508b
commit
06190df7c1
1 changed files with 1 additions and 1 deletions
|
@ -808,7 +808,7 @@ KiInitializeUserApc(IN PKEXCEPTION_FRAME ExceptionFrame,
|
||||||
KeGetCurrentThread()->TrapFrame);
|
KeGetCurrentThread()->TrapFrame);
|
||||||
|
|
||||||
/* Don't deliver APCs in V86 mode */
|
/* Don't deliver APCs in V86 mode */
|
||||||
if (TrapFrame->Eflags & 2) return;
|
if (TrapFrame->Eflags & X86_EFLAGS_VM) return;
|
||||||
|
|
||||||
/* Save the full context */
|
/* Save the full context */
|
||||||
Context.ContextFlags = CONTEXT_FULL | CONTEXT_DEBUG_REGISTERS;
|
Context.ContextFlags = CONTEXT_FULL | CONTEXT_DEBUG_REGISTERS;
|
||||||
|
|
Loading…
Reference in a new issue