xref: /freebsd-src/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteProperties.td (revision 9dba64be9536c28e4800e06512b7f29b43ade345)
1*9dba64beSDimitry Andricinclude "../../../../include/lldb/Core/PropertiesBase.td"
2*9dba64beSDimitry Andric
3*9dba64beSDimitry Andriclet Definition = "processgdbremote" in {
4*9dba64beSDimitry Andric  def PacketTimeout: Property<"packet-timeout", "UInt64">,
5*9dba64beSDimitry Andric    Global,
6*9dba64beSDimitry Andric    DefaultUnsignedValue<5>,
7*9dba64beSDimitry Andric    Desc<"Specify the default packet timeout in seconds.">;
8*9dba64beSDimitry Andric  def TargetDefinitionFile: Property<"target-definition-file", "FileSpec">,
9*9dba64beSDimitry Andric    Global,
10*9dba64beSDimitry Andric    DefaultStringValue<"">,
11*9dba64beSDimitry Andric    Desc<"The file that provides the description for remote target registers.">;
12*9dba64beSDimitry Andric  def UseSVR4: Property<"use-libraries-svr4", "Boolean">,
13*9dba64beSDimitry Andric    Global,
14*9dba64beSDimitry Andric    DefaultFalse,
15*9dba64beSDimitry Andric    Desc<"If true, the libraries-svr4 feature will be used to get a hold of the process's loaded modules.">;
16*9dba64beSDimitry Andric}
17