NdisRequestPoll function (poll.h)

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

Syntax

void NdisRequestPoll(
  [_In_] NDIS_POLL_HANDLE PollHandle,
         void             *Reserved
);

Parameters

[_In_] PollHandle

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.

Return value

None

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.

Requirements

Requirement Value
Minimum supported client Windows 11
Minimum supported server Windows Server 2022
Header poll.h (include ndis.h)
IRQL <= HIGH_LEVEL

See also

NdisPoll

NdisRegisterPoll