xref: /llvm-project/lldb/source/Plugins/Platform/MacOSX/PlatformMacOSXProperties.td (revision bff4673b41781ec5bff6b96b52cf321d2271726c)
1include "../../../../include/lldb/Core/PropertiesBase.td"
2
3let Definition = "platformdarwinkernel" in {
4  def KextDirectories: Property<"kext-directories", "FileSpecList">,
5    DefaultStringValue<"">,
6    Desc<"Directories/KDKs to search for kexts in when starting a kernel debug session.">;
7}
8
9let Definition = "platformdarwin" in {
10  def IgnoredExceptions: Property<"ignored-exceptions", "String">,
11    DefaultStringValue<"">,
12    Desc<"List the mach exceptions to ignore, separated by '|' "
13         "(e.g. 'EXC_BAD_ACCESS|EXC_BAD_INSTRUCTION'). "
14         "lldb will instead stop on the BSD signal the exception was converted "
15         "into, if there is one.">;
16}
17