NdisRequestPoll - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// poll.h

void NdisRequestPoll(
  [_In_] NDIS_POLL_HANDLE PollHandle,
         void             *Reserved
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-poll-ndisrequestpoll)

Description

Miniport drivers call NdisRequestPoll to ask NDIS to execute the NdisPoll callback for this Poll object.

Parameters

PollHandle [_In_]

A handle to the Poll object returned by a successful call to NdisRegisterPoll.

Reserved

[_Reserved_] Reserved for future use. The driver must set to zero.

Remarks

A driver calls NdisRequestPoll to ask NDIS to execute the NdisPoll callback for this Poll object. It is guaranteed that NDIS will invoke the NdisPoll callback at least once. NdisRequestPoll can be called from any IRQL, typically from interrupt handling routines.

See also

NdisPoll

NdisRegisterPoll