]> git.saurik.com Git - apple/xnu.git/blobdiff - iokit/IOKit/IOCatalogue.h
xnu-792.6.22.tar.gz
[apple/xnu.git] / iokit / IOKit / IOCatalogue.h
index e81e0f486b259d08bbac2b6273d3e4ae9870a83f..4f1bfa07c25ef82b338b52d4b2ac134ea4dfccdd 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
@@ -238,6 +239,8 @@ public:
     */
     virtual kern_return_t removeKernelLinker(void);
 
+    static void disableExternalLinker(void);
+
 private:
 
     /*!
@@ -246,8 +249,6 @@ private:
         @param moduleName An OSString containing the name of the module to unload.
      */
     IOReturn unloadModule( OSString * moduleName ) const;
-
-
 };
 
 __BEGIN_DECLS