IoStopTimer - NtDoc

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

VOID IoStopTimer(
  [in] PDEVICE_OBJECT DeviceObject
);

View the official Windows Driver Kit DDI reference
// wdm.h

VOID IoStopTimer(
  [in] PDEVICE_OBJECT DeviceObject
);

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ntifs-iostoptimer)

IoStopTimer function (ntifs.h)

Description

The IoStopTimer routine disables the timer for a specified device object so the driver-supplied IoTimer routine is not called.

Parameters

DeviceObject [in]

Pointer to the device object with which the IoTimer routine is associated.

Remarks

The driver-supplied IoTimer routine can be reenabled with a call to IoStartTimer.

Do not call IoStopTimer from within the IoTimer routine.

See also

IoInitializeTimer

IoStartTimer


Windows Driver Kit DDI reference (nf-wdm-iostoptimer)

IoStopTimer function (wdm.h)

Description

The IoStopTimer routine disables the timer for a specified device object so the driver-supplied IoTimer routine is not called.

Parameters

DeviceObject [in]

Pointer to the device object with which the IoTimer routine is associated.

Remarks

The driver-supplied IoTimer routine can be reenabled with a call to IoStartTimer.

Do not call IoStopTimer from within the IoTimer routine.

See also

IoInitializeTimer

IoStartTimer