NdisMSetTimer (Compact 2013)

3/26/2014

This function sets a timer to fire after a specified interval, thus running an associated MiniportTimer function when the timer fires.

Syntax

VOID NdisMSetTimer(
  PNDIS_MINIPORT_TIMER Timer,
  UINT MillisecondsToDelay
);

Parameters

  • Timer
    [in] Pointer to caller-supplied resident storage for a timer object previously initialized with the NdisMInitializeTimer function.
  • MillisecondsToDelay
    [in] Specifies the interval, in milliseconds, to time out before calling the MiniportTimer function.

Return Value

None.

Remarks

This function causes the driver-supplied MiniportTimer function, which was associated with the timer object when MiniportInitialize called NdisMInitializeTimer, to run once after the given MillisecondsToDelay expires. Execution of the MiniportTimer function associated with the Timer passed to this function is episodic, rather than periodic. A miniport must call this function each time the associated timer function should be run.

By contrast, the NdisMSetPeriodicTimer function causes the associated MiniportTimer function to be run repeatedly whenever the specified MillisecondsPeriod expires. At the initial call to NdisMSetPeriodicTimer, the timer object is queued until the MillisecondsPeriod expires; then the MiniportTimer function is run, and the timer object is automatically re-queued for the next interval.

Generally, a miniport should allocate and initialize two separate timer objects if it calls both NdisMSetPeriodicTimer and this function. Such a driver is likely to have two MiniportTimer functions with different functionality, each associated with a particular timer object when it is initialized with NdisMInitializeTimer. For example, a MiniportTimer function that runs periodically might poll device state at regular intervals, whereas another MiniportTimer function might retry a particular run-time operation only if it times out on the NIC.

If a miniport calls this function, NdisMCancelTimer, or NdisMSetPeriodicTimer with the same Timer pointer originally passed to this function before the originally specified MillisecondsToDelay expires, the current call cancels its preceding call to this function. Any call to an NDIS timer function resets the specified timer to expire at the interval specified in the most recent call and causes the associated MiniportTimer function to run when the most recently specified interval has expired.

Timer resolution on the host varies. Consequently, calling this function with very small time-out values does not necessarily cause the execution of MiniportTimer exactly when the specified interval expires.

Requirements

Header

ndis.h

Library

ndis.dll

See Also

Reference

NDIS 5.x Legacy Functions
NdisMInitializeTimer
MiniportInitialize
MiniportTimer
NdisMSetPeriodicTimer
NdisMCancelTimer