brintos

brintos / llvm-project-archived public Read only

0
0
Text · 971 B · 520dad0 Raw
25 lines · plain
1include "../../../../include/lldb/Core/PropertiesBase.td"2 3let Definition = "processgdbremote" in {4  def PacketTimeout: Property<"packet-timeout", "UInt64">,5    Global,6#ifdef LLDB_SANITIZED7    DefaultUnsignedValue<60>,8#else9    DefaultUnsignedValue<5>,10#endif11    Desc<"Specify the default packet timeout in seconds.">;12  def TargetDefinitionFile: Property<"target-definition-file", "FileSpec">,13    Global,14    DefaultStringValue<"">,15    Desc<"The file that provides the description for remote target registers.">;16  def UseSVR4: Property<"use-libraries-svr4", "Boolean">,17    Global,18    DefaultTrue,19    Desc<"If true, the libraries-svr4 feature will be used to get a hold of the process's loaded modules. This setting is only effective if lldb was build with xml support.">;20  def UseGPacketForReading: Property<"use-g-packet-for-reading", "Boolean">,21    Global,22    DefaultFalse,23    Desc<"Specify if the server should use 'g' packets to read registers.">;24}25