views:

58

answers:

1

I would like to inspect the contents of an OSDictionary from my kext. is there a convenient way to print the contents to system.log or similar? (ala CFShow()) ?

thx->adv,

|K<

A: 

I have found a code-snippet to assist in this (which prints the dict keys):

static void printDictionaryKeys (OSDictionary * inDictionary, char * inMsg)

the source is here: printDictionaryKeys()

kent