KeSetEvent must be called with Wait set to FALSE within a DPC.

svn path=/trunk/; revision=3649
This commit is contained in:
Hartmut Birr 2002-10-21 17:05:32 +00:00
parent 66e64009cd
commit 7e51468aab

View file

@ -1,4 +1,4 @@
/* $Id: beep.c,v 1.14 2002/09/08 10:22:04 chorns Exp $ /* $Id: beep.c,v 1.15 2002/10/21 17:05:32 hbirr Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -46,7 +46,7 @@ BeepDPC(PKDPC Dpc,
DeviceExtension->BeepOn = FALSE; DeviceExtension->BeepOn = FALSE;
KeSetEvent(&DeviceExtension->Event, KeSetEvent(&DeviceExtension->Event,
0, 0,
TRUE); FALSE);
DPRINT("BeepDPC() finished!\n"); DPRINT("BeepDPC() finished!\n");
} }