+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)
+{
+ bool res;
+ IOStatisticsOpenGate();
+ res = workLoop->sleepGate(event, type);
+ IOStatisticsCloseGate();
+ return res;
+}
+
+int IOEventSource::sleepGate(void *event, AbsoluteTime deadline, UInt32 type)
+{
+ bool res;
+ IOStatisticsOpenGate();
+ res = workLoop->sleepGate(event, deadline, type);
+ IOStatisticsCloseGate();
+ return res;
+}
+
+void IOEventSource::wakeupGate(void *event, bool oneThread) { workLoop->wakeupGate(event, oneThread); }
+
+