Skip to content
  • Greg Clayton's avatar
    Thread safety changes in debugserver and also in the process GDB remote plugin. · c4e411ff
    Greg Clayton authored
    I added support for asking if the GDB remote server supports thread suffixes
    for packets that should be thread specific (register read/write packets) because
    the way the GDB remote protocol does it right now is to have a notion of a
    current thread for register and memory reads/writes (set via the "$Hg%x" packet)
    and a current thread for running ("$Hc%x"). Now we ask the remote GDB server
    if it supports adding the thread ID to the register packets and we enable
    that feature in LLDB if supported. This stops us from having to send a bunch
    of packets that update the current thread ID to some value which is prone to
    error, or extra packets.
    
    llvm-svn: 123762
    c4e411ff
Loading