* Implement the call throughs for the private protection conversion
*/
bool IOFilterInterruptEventSource::init(OSObject *inOwner,
- Action inAction = 0,
- IOService *inProvider = 0,
- int inIntIndex = 0)
+ Action inAction,
+ IOService *inProvider,
+ int inIntIndex)
{
return false;
}
Action inAction,
Filter inFilterAction,
IOService *inProvider,
- int inIntIndex = 0)
+ int inIntIndex)
{
if ( !super::init(inOwner, inAction, inProvider, inIntIndex) )
return false;
Action inAction,
Filter inFilterAction,
IOService *inProvider,
- int inIntIndex = 0)
+ int inIntIndex)
{
IOFilterInterruptEventSource *me = new IOFilterInterruptEventSource;
if (me
&& !me->init(inOwner, inAction, inFilterAction, inProvider, inIntIndex)) {
- me->free();
+ me->release();
return 0;
}