You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
533 B
14 lines
533 B
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.">;
|
|
}
|