mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +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
|
* 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");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue