mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
VmWare is having problems with Volatile and Atomic process counters at boot time. Fix later
svn path=/trunk/; revision=9154
This commit is contained in:
parent
fb6ac7fe65
commit
1954069fed
1 changed files with 3 additions and 3 deletions
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: irq.c,v 1.42 2004/04/14 23:32:38 jimtabor Exp $
|
/* $Id: irq.c,v 1.43 2004/04/16 01:28:15 jimtabor Exp $
|
||||||
*
|
*
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
* FILE: ntoskrnl/ke/i386/irq.c
|
* FILE: ntoskrnl/ke/i386/irq.c
|
||||||
|
@ -520,12 +520,12 @@ KiInterruptDispatch (ULONG irq, PKIRQ_TRAPFRAME Trapframe)
|
||||||
Ke386DisableInterrupts();
|
Ke386DisableInterrupts();
|
||||||
|
|
||||||
HalEndSystemInterrupt (old_level, 0);
|
HalEndSystemInterrupt (old_level, 0);
|
||||||
|
#if 0
|
||||||
if (old_level==PASSIVE_LEVEL)
|
if (old_level==PASSIVE_LEVEL)
|
||||||
{
|
{
|
||||||
KiUpdateProcessThreadTime();
|
KiUpdateProcessThreadTime();
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
if (old_level==PASSIVE_LEVEL && Trapframe->Cs != KERNEL_CS)
|
if (old_level==PASSIVE_LEVEL && Trapframe->Cs != KERNEL_CS)
|
||||||
{
|
{
|
||||||
CurrentThread = KeGetCurrentThread();
|
CurrentThread = KeGetCurrentThread();
|
||||||
|
|
Loading…
Reference in a new issue