Author: hbelusca
Date: Mon Aug 17 20:22:10 2015
New Revision: 68747
URL:
http://svn.reactos.org/svn/reactos?rev=68747&view=rev
Log:
Fix a comment and add something that was forgotten in the previous commit.
Modified:
trunk/reactos/subsystems/mvdm/ntvdm/dos/dos32krnl/process.c
Modified: trunk/reactos/subsystems/mvdm/ntvdm/dos/dos32krnl/process.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/mvdm/ntvdm/dos/…
==============================================================================
--- trunk/reactos/subsystems/mvdm/ntvdm/dos/dos32krnl/process.c [iso-8859-1] (original)
+++ trunk/reactos/subsystems/mvdm/ntvdm/dos/dos32krnl/process.c [iso-8859-1] Mon Aug 17
20:22:10 2015
@@ -546,7 +546,7 @@
*/
setDX(Segment);
setDI(FinalSP);
- setBP(0x091E); // DOS base stack pointer relic value
+ setBP(0x091E); // DOS base stack pointer relic value. In MS-DOS 5.0 and
Windows' NTVDM it's 0x091C. This is in fact the old SP value inside DosData disk
stack.
setSI(FinalIP);
setAX(0/*0xFFFF*/); // FIXME: fcbcode
@@ -897,7 +897,7 @@
/* Notify VDDs of process termination */
VDDTerminateUserHook(Psp);
- /* Check if this PSP is it's own parent */
+ /* Check if this PSP is its own parent */
if (PspBlock->ParentPsp == Psp) goto Done;
if (KeepResident == 0)