Contents

stop

Stops the network controller.

Declaration

virtual void stop(
 IOService *provider);

Parameters

  • provider:

    The provider that the controller was matched (and attached) to.

Overview

The counterpart of start(). The controller has been instructed to stop running. The stop() method should release resources and undo actions performed by the start() method. Subclasses must override this method and call super::stop() at the end of its implementation.

See Also

Miscellaneous