mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 12:23:30 +00:00
[NTVDM]
Add a DPRINT to diagnose CORE-10182 svn path=/trunk/; revision=69366
This commit is contained in:
@@ -285,7 +285,14 @@ VdmShutdown(BOOLEAN Immediate)
|
||||
* Immediate = TRUE: Immediate shutdown;
|
||||
* FALSE: Delayed shutdown.
|
||||
*/
|
||||
BOOLEAN MustShutdown;
|
||||
static BOOLEAN MustShutdown = FALSE;
|
||||
|
||||
/* If a shutdown is ongoing, just return */
|
||||
if (MustShutdown)
|
||||
{
|
||||
DPRINT1("Shutdown is ongoing...\n");
|
||||
return;
|
||||
}
|
||||
|
||||
/* First notify DOS to see whether we can shut down now */
|
||||
MustShutdown = DosShutdown(Immediate);
|
||||
|
||||
Reference in New Issue
Block a user