RtlWakeAddressSingleNoFence - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#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
    );

#endif
// end_rev
#endif

View code on GitHub

NtDoc

No description available.