+ if (me->enabled && me->action)
+ {
+ IOWorkLoop *
+ wl = me->workLoop;
+ if (wl)
+ {
+ Action doit;
+ wl->closeGate();
+ doit = (Action) me->action;
+ if (doit && me->enabled && AbsoluteTime_to_scalar(&me->abstime))
+ {
+ IOTimeStampConstant(IODBG_TIMES(IOTIMES_ACTION),
+ (unsigned int) doit, (unsigned int) me->owner);
+ (*doit)(me->owner, me);
+ }
+ wl->openGate();
+ }
+ }
+}
+
+void IOTimerEventSource::timeoutAndRelease(void * self, void * count)
+{
+ IOTimerEventSource *me = (IOTimerEventSource *) self;