Contents

handleOpen

Handles a client open.

Declaration

virtual bool handleOpen(
 IOService *client, 
 IOOptionBitsoptions, 
 void *argument);

Parameters

  • client:

    The client that is attempting to open the controller.

  • options:

    Not used. See IOService.

  • argument:

    Not used. See IOService.

Return Value

Returns true to accept the client open, false to refuse it.

Overview

This method handles a client open on the controller object. IOService calls this method with the arbitration lock held. Subclasses should not override this method.

See Also

Miscellaneous