#ifndef _NTRTL_H
//
// Wait on address
//
// begin_rev
#if (PHNT_VERSION >= PHNT_WINDOWS_8)
/**
* The RtlWakeAddressSingleNoFence routine wakes one thread that is waiting for the value of an address to change.
*
* \param Address The address to signal.
* \sa https://learn.microsoft.com/en-us/windows/win32/api/synchapi/nf-synchapi-wakebyaddresssingle
*/
NTSYSAPI
VOID
NTAPI
RtlWakeAddressSingleNoFence(
_In_ PVOID Address
);
View code on GitHubNo description available.