- Fix incorrect comment, spotted by Timo.

- Purpouses -> Purposes.

svn path=/trunk/; revision=43914
This commit is contained in:
Stefan Ginsberg
2009-11-02 18:08:49 +00:00
parent 602db5f2d1
commit dede0fa637
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -671,7 +671,7 @@ KdpGetContext(IN PDBGKD_MANIPULATE_STATE64 State,
ProcessorState.ContextFrame;
}
/* Copy it over */
/* Copy it over to the debugger */
RtlCopyMemory(Data->Buffer, TargetContext, sizeof(CONTEXT));
Data->Length = sizeof(CONTEXT);
@@ -724,7 +724,7 @@ KdpSetContext(IN PDBGKD_MANIPULATE_STATE64 State,
ProcessorState.ContextFrame;
}
/* Get the context from the PRCB array */
/* Copy the new context to it */
RtlCopyMemory(TargetContext, Data->Buffer, sizeof(CONTEXT));
/* Finish up */
+1 -1
View File
@@ -3,7 +3,7 @@
* LICENSE: GPL - See COPYING in the top level directory
* FILE: ntoskrnl/ke/i386/irq.c
* PURPOSE: Manages the Kernel's IRQ support for external drivers,
* for the purpouses of connecting, disconnecting and setting
* for the purposes of connecting, disconnecting and setting
* up ISRs for drivers. The backend behind the Io* Interrupt
* routines.
* PROGRAMMERS: Alex Ionescu ([email protected])