-void IOEventSource::signalWorkAvailable() { workLoop->signalWorkAvailable(); }
-void IOEventSource::openGate() { workLoop->openGate(); }
-void IOEventSource::closeGate() { workLoop->closeGate(); }
-bool IOEventSource::tryCloseGate() { return workLoop->tryCloseGate(); }
+
+#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;
+}
+