Previous Next

IoDeleteController

The IoDeleteController routine removes a given controller object from the system, for example, when the driver that created it is being unloaded.

VOID 
  IoDeleteController(
    IN PCONTROLLER_OBJECT  ControllerObject
    );

Parameters

ControllerObject
Pointer to the controller object to be released.

Return Value

None

Headers

Declared in ntddk.h. Include ntddk.h.

Comments

IoDeleteController deallocates the memory for the controller object, including the controller extension.

This routine must be called when a driver that created a controller object is being unloaded or when the driver encounters a fatal error during device start-up, such as being unable to properly initialize a physical device.

A driver must release certain resources for which the driver supplied storage in its controller extension before it calls IoDeleteController. For example, if the driver stores the pointer to its interrupt object(s) in the controller extension, it must call IoDisconnectInterrupt before IoDeleteController.

Callers of IoDeleteController must be running at IRQL = PASSIVE_LEVEL.

See Also

IoCreateController, IoDisconnectInterrupt