]> git.saurik.com Git - apple/xnu.git/blob - tools/lldbmacros/core/configuration.py
xnu-3789.51.2.tar.gz
[apple/xnu.git] / tools / lldbmacros / core / configuration.py
1 # global configs to be included by everybody. The recommended way is
2 # from core.configuration import *
3 # verbosity levels
4 (vSILENT, vHUMAN, vSCRIPT, vDETAIL) = (0, 1, 2, 3)
5
6 config = {'debug': False, 'verbosity': vHUMAN, 'showTypeSummary': False, "CacheStaticData":True, "CacheDynamicData": True}
7 # Note: The above configuration dictionary holds the default values.
8 # 'debug' when True enables debug print messages in whole of xnu lldbmacros framework
9 # 'CacheStaticData' when True caches static data. Types, uuids etc.
10 # 'CacheDymanicData' when True caches dynamic data which will get cleared upon continuing, single stepping or detaching.