This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)logKextManager:(OSReturn)osr | |
{ | |
switch (osr) { | |
case kOSMetaClassDuplicateClass: | |
NSLog(@"A duplicate Libkern C++ classname was encountered during kext loading."); | |
break; | |
case kOSMetaClassHasInstances: | |
NSLog(@"A kext cannot be unloaded because there are instances derived from Libkern C++ classes that it defines."); | |
break; | |
case kOSMetaClassInstNoSuper: |