#ifndef _NTRTL_H
//
// Wait on address
//
// begin_rev
#if (PHNT_VERSION >= PHNT_WINDOWS_8)
/**
* The RtlWakeAddressAllNoFence routine wakes all threads that are waiting for the value of an address to change.
*
* \param Address The address to signal. If any threads have previously called RtlWaitOnAddress for this address, the system wakes all of the waiting threads.
* \sa https://learn.microsoft.com/en-us/windows/win32/api/synchapi/nf-synchapi-wakebyaddressall
*/
NTSYSAPI
VOID
NTAPI
RtlWakeAddressAllNoFence(
_In_ PVOID Address
);
View code on GitHubNo description available.