BOOLEAN
KeSetTimer(
IN PKTIMER Timer,
IN LARGE_INTEGER DueTime,
IN PKDPC Dpc /* optional */
);
KeSetTimer sets the absolute or relative interval at which a timer object is to be set to the Signaled state and, optionally, supplies a CustomTimerDpc routine to be executed when that interval expires.
If the timer object was already in the system timer queue, KeSetTimer returns TRUE.
KeSetTimer:
If the timer object was already in the timer queue, it is implicitly canceled before being set to the new expiration time. A call to KeSetTimer before the previously specified DueTime has expired cancels both the timer and the call to the Dpc, if any, associated with the previous call.
If the Dpc parameter is specified, a DPC object is associated with the timer object. When the timer expires, the timer object is removed from the system timer queue and its state is set to Signaled. If a DPC object was associated with the timer when it was set, the DPC object is inserted in the system DPC queue to be executed as soon as conditions permit after the timer interval expires.
Only one instantiation of a given DPC object can be queued at any given moment. To avoid potential race conditions, the DPC passed to KeSetTimer should not be passed to KeInsertQueueDpc.
A caller cannot wait at raised IRQL nor in an arbitrary thread context for a timer to expire by calling KeWaitXxx.
Callers of KeSetTimer can specify one expiration time for a timer. To set a recurring timer use KeSetTimerEx.
Callers of KeSetTimer must be running at IRQL <= DISPATCH_LEVEL.
KeCancelTimer, KeInitializeDpc, KeInitializeTimer, KeInitializeTimerEx, KeReadStateTimer, KeSetTimerEx, KeWaitForMultipleObjects, KeWaitForSingleObject