mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Don't shutdown devices before flushing registry and shutting down filesystems.
svn path=/trunk/; revision=13365
This commit is contained in:
parent
7aefb1c881
commit
fb16822055
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id:$
|
/* $Id$
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -45,9 +45,9 @@ ShutdownThreadMain(PVOID Context)
|
||||||
/* Run the thread on the boot processor */
|
/* Run the thread on the boot processor */
|
||||||
KeSetSystemAffinityThread(1);
|
KeSetSystemAffinityThread(1);
|
||||||
|
|
||||||
IoShutdownRegisteredDevices();
|
|
||||||
CmShutdownRegistry();
|
CmShutdownRegistry();
|
||||||
IoShutdownRegisteredFileSystems();
|
IoShutdownRegisteredFileSystems();
|
||||||
|
IoShutdownRegisteredDevices();
|
||||||
|
|
||||||
PiShutdownProcessManager();
|
PiShutdownProcessManager();
|
||||||
MiShutdownMemoryManager();
|
MiShutdownMemoryManager();
|
||||||
|
|
Loading…
Reference in a new issue