aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernelProperties.td
blob: 6c662d737fab8a53eb7e82186c4a4d35f501237a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
include "../../../../include/lldb/Core/PropertiesBase.td"

let Definition = "dynamicloaderdarwinkernel" in {
  def LoadKexts: Property<"load-kexts", "Boolean">,
    Global,
    DefaultTrue,
    Desc<"Automatically loads kext images when attaching to a kernel.">;
  def ScanType: Property<"scan-type", "Enum">,
    Global,
    DefaultEnumValue<"eKASLRScanNearPC">,
    EnumValues<"OptionEnumValues(g_kaslr_kernel_scan_enum_values)">,
    Desc<"Control how many reads lldb will make while searching for a Darwin kernel on attach.">;
}