xref: /openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/PlatformMacOSXProperties.td (revision f6aab3d83b51b91c24247ad2c2573574de475a82)
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