2OO7, 29 April
NtSetEventBoostPriority
NtSetEventBoostPriority
NTSYSAPI
NTSTATUS
NTAPI
NtSetEventBoostPriority(
IN HANDLE EventHandle );
Function NtSetEventPriorityBoost was added in
Windows XP system. Has the same functionality as
NtSetEvent, but thread that is waiting on specified
Event will be executed immediatelly after context switch,
regardless of waiting thread's priority.
- EventHandle HANDLE to previously
created or opened Event object. Note that Event has to be
created with
EVENT_TYPE set to SynchronizationEvent (automatic
reset), in other cases function will return with error.
- Supported on system versions:
- Win XP/2003
- Documented by:
- Tomasz Nowak
Requirements:
- Library: ntdll.lib
See also:
-
EVENT_TYPE
-
NtCreateEvent
-
NtOpenEvent
-
NtSetEvent