+bool
+IOEventSource::checkForWork()
+{
+ return false;
+}
+
+/* inline function implementations */
+
+#if IOKITSTATS
+
+#define IOStatisticsRegisterCounter() \
+do { \
+ reserved->counter = IOStatistics::registerEventSource(inOwner); \
+} while (0)
+
+#define IOStatisticsUnregisterCounter() \
+do { \
+ if (reserved) \
+ IOStatistics::unregisterEventSource(reserved->counter); \
+} while (0)
+
+#define IOStatisticsOpenGate() \
+do { \
+ IOStatistics::countOpenGate(reserved->counter); \
+} while (0)
+
+#define IOStatisticsCloseGate() \
+do { \
+ IOStatistics::countCloseGate(reserved->counter); \
+} while (0)
+
+#else
+
+#define IOStatisticsRegisterCounter()
+#define IOStatisticsUnregisterCounter()
+#define IOStatisticsOpenGate()
+#define IOStatisticsCloseGate()
+
+#endif /* IOKITSTATS */
+
+void
+IOEventSource::signalWorkAvailable()
+{
+ workLoop->signalWorkAvailable();
+}
+
+void
+IOEventSource::openGate()
+{
+ IOStatisticsOpenGate();
+ workLoop->openGate();
+}
+
+void
+IOEventSource::closeGate()
+{
+ workLoop->closeGate();
+ IOStatisticsCloseGate();
+}
+
+bool
+IOEventSource::tryCloseGate()
+{
+ bool res;
+ if ((res = workLoop->tryCloseGate())) {
+ IOStatisticsCloseGate();
+ }
+ return res;
+}
+
+int
+IOEventSource::sleepGate(void *event, UInt32 type)
+{
+ int res;
+ IOStatisticsOpenGate();
+ res = workLoop->sleepGate(event, type);
+ IOStatisticsCloseGate();
+ return res;
+}
+
+int
+IOEventSource::sleepGate(void *event, AbsoluteTime deadline, UInt32 type)
+{
+ int res;
+ IOStatisticsOpenGate();
+ res = workLoop->sleepGate(event, deadline, type);
+ IOStatisticsCloseGate();
+ return res;
+}
+
+void
+IOEventSource::wakeupGate(void *event, bool oneThread)
+{
+ workLoop->wakeupGate(event, oneThread);
+}
+
+
+bool
+IOEventSource::init(OSObject *inOwner,
+ Action inAction)
+{
+ if (!inOwner) {
+ return false;
+ }
+
+ owner = inOwner;
+
+ if (!super::init()) {
+ return false;
+ }
+
+ (void) setAction(inAction);
+ enabled = true;
+
+ if (!reserved) {
+ reserved = IONew(ExpansionData, 1);
+ if (!reserved) {
+ return false;
+ }
+ }
+
+ IOStatisticsRegisterCounter();
+
+ return true;
+}
+
+void
+IOEventSource::free( void )