]> git.saurik.com Git - apple/xnu.git/blobdiff - iokit/IOKit/IOEventSource.h
xnu-344.tar.gz
[apple/xnu.git] / iokit / IOKit / IOEventSource.h
index e3d37759ae55408724e49fbce074813aa49ffb03..6136c93ae893f3e35417ea04d4ad779496cac285 100644 (file)
@@ -176,14 +176,18 @@ IOWorkLoop that at least reacts to signalWorkAvailable() and onThread functions.
 
 protected:
     // Methods to access the IOWorkLoop exported fields
-    inline void signalWorkAvailable()  { workLoop->signalWorkAvailable(); };
-    inline void openGate()             { workLoop->openGate(); };
-    inline void closeGate()            { workLoop->closeGate(); };
-    inline bool tryCloseGate()         { return workLoop->tryCloseGate(); };
-    inline int sleepGate(void *event, UInt32 type)
-        { return workLoop->sleepGate(event, type); };
-    inline void wakeupGate(void *event, bool oneThread)
-        { workLoop->wakeupGate(event, oneThread); };
+    /* inline */ void signalWorkAvailable();
+        /* { workLoop->signalWorkAvailable(); }; */
+    /* inline */ void openGate();
+        /* { workLoop->openGate(); }; */
+    /* inline */ void closeGate();
+        /* { workLoop->closeGate(); }; */
+    /* inline */ bool tryCloseGate();
+        /* { return workLoop->tryCloseGate(); }; */
+    /* inline */ int sleepGate(void *event, UInt32 type);
+        /* { return workLoop->sleepGate(event, type); }; */
+    /* inline */ void wakeupGate(void *event, bool oneThread);
+        /* { workLoop->wakeupGate(event, oneThread); }; */
 
 public:
 /*! @function setAction