]> git.saurik.com Git - apple/xnu.git/blobdiff - iokit/IOKit/IOCatalogue.h
xnu-517.7.21.tar.gz
[apple/xnu.git] / iokit / IOKit / IOCatalogue.h
index e81e0f486b259d08bbac2b6273d3e4ae9870a83f..129be6ec5cb6752a201b15c77cd2d5277c6bd29d 100644 (file)
@@ -161,7 +161,7 @@ public:
     /*!
         @function terminateDrivers
         @abstract Terminates all instances of a driver which match the contents of the matching dictionary. Does not unload module.
-        @param matching Dictionary containing the matching criteria.
+        @param matching  A dictionary whose keys and values are used for matching personalities in the database.  For example, a matching dictionary containing a 'IOProviderClass' key with the value 'IOPCIDevice' will cause termination for all instances whose personalities have the key 'IOProviderClass' equal to 'IOPCIDevice'.
      */
     IOReturn terminateDrivers( OSDictionary * matching );
 
@@ -184,7 +184,7 @@ public:
     /*!
         @function startMatching
         @abstract Starts an IOService matching thread where matching keys and values are provided by the matching dictionary.
-        @param matching A dictionary containing keys and values to match against.
+        @param matching  A dictionary whose keys and values are used for matching personalities in the database.  For example, a matching dictionary containing a 'IOProviderClass' key with the value 'IOPCIDevice' will start matching for all personalities which have the key 'IOProviderClass' equal to 'IOPCIDevice'.
      */
     bool startMatching( OSDictionary * matching );
 
@@ -202,6 +202,7 @@ public:
      */
     virtual bool serialize(OSSerialize * s) const;
 
+    bool serializeData(IOOptionBits kind, OSSerialize * s) const;
 
     /*!
         @function recordStartupExtensions
@@ -246,8 +247,6 @@ private:
         @param moduleName An OSString containing the name of the module to unload.
      */
     IOReturn unloadModule( OSString * moduleName ) const;
-
-
 };
 
 __BEGIN_DECLS