mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 05:22:59 +00:00
- Make IoCreateNotificationEvent and IoCreateSynchronizationEvent create kernel handles (according to MSDN http://msdn.microsoft.com/en-us/library/aa490498.aspx). Spotted by Stefan Ginsberg.
svn path=/trunk/; revision=33470
This commit is contained in:
parent
d600586fdd
commit
fcae112976
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ IopCreateEvent(IN PUNICODE_STRING EventName,
|
|||
/* Initialize the object attributes */
|
||||
InitializeObjectAttributes(&ObjectAttributes,
|
||||
EventName,
|
||||
OBJ_OPENIF,
|
||||
OBJ_OPENIF | OBJ_KERNEL_HANDLE,
|
||||
NULL,
|
||||
NULL);
|
||||
|
||||
|
|
Loading…
Reference in a new issue