]> git.saurik.com Git - apple/xnu.git/blobdiff - iokit/IOKit/pwr_mgt/IOPMinformeeList.h
xnu-792.25.20.tar.gz
[apple/xnu.git] / iokit / IOKit / pwr_mgt / IOPMinformeeList.h
index 608a93d4a1c01bc53e46f735a9465e68fef1e532..54c3f8f88fb41736479c6b545b205e7147434a5c 100644 (file)
@@ -20,6 +20,7 @@
  * @APPLE_LICENSE_HEADER_END@
  */
 #include <libkern/c++/OSObject.h>
+#include <IOKit/IOLocks.h>
 #include <IOKit/IOReturn.h>
 
 class IOPMinformee;
@@ -30,25 +31,24 @@ class IOPMinformeeList : public OSObject
 OSDeclareDefaultStructors(IOPMinformeeList)
 
 private:
-IOPMinformee *  firstItem;             // pointer to first informee in the list
-unsigned long  length;                 // how many informees are in the list
-
+    IOPMinformee       *firstItem;      // pointer to first informee in the list
+    unsigned long       length;         // how many informees are in the list
 
 public:
-void initialize ( void );
-
-IOReturn addToList ( IOPMinformee *   newInformee );
-
-IOPMinformee * firstInList ( void );
-
-IOPMinformee * nextInList ( IOPMinformee * currentItem );
-
-unsigned long numberOfItems ( void );
+    void initialize ( void );
+    void free ( void );
 
-IOPMinformee * findItem ( IOService * driverOrChild );
+    unsigned long numberOfItems ( void );
 
-IOReturn removeFromList ( IOService * theItem );
+    IOReturn addToList ( IOPMinformee *   newInformee );
+    IOReturn removeFromList ( IOService * theItem );
+    
+    IOPMinformee * firstInList ( void );
+    IOPMinformee * nextInList ( IOPMinformee * currentItem );
+    
+    IOPMinformee * findItem ( IOService * driverOrChild );        
 
-void free ( void );
+    // This lock must be held while modifying list or length
+    static IORecursiveLock * getSharedRecursiveLock( void );
 };