mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
KeSetEvent must be called with Wait set to FALSE within a DPC.
svn path=/trunk/; revision=3649
This commit is contained in:
parent
66e64009cd
commit
7e51468aab
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -46,7 +46,7 @@ BeepDPC(PKDPC Dpc,
|
|||
DeviceExtension->BeepOn = FALSE;
|
||||
KeSetEvent(&DeviceExtension->Event,
|
||||
0,
|
||||
TRUE);
|
||||
FALSE);
|
||||
|
||||
DPRINT("BeepDPC() finished!\n");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue