1. 11 12月, 2014 7 次提交
  2. 10 12月, 2014 2 次提交
  3. 08 12月, 2014 1 次提交
  4. 06 12月, 2014 1 次提交
  5. 05 12月, 2014 11 次提交
  6. 04 12月, 2014 10 次提交
  7. 03 12月, 2014 6 次提交
  8. 02 12月, 2014 2 次提交
    • C
      GDB: use gdbserver --server-sdtderr option if available · 71d47611
      Cleber Rosa 提交于
      A new command line option is being added to upstream GDB. This new
      option allows gdbserver's own stderr (but not its inferior process
      stderr) to be redirected to another file.
      
      If that feature is available on the about to be used gdbserver, then
      let's make use of it. This redirects its stderr to /dev/null, because
      avocado itself has no real use for gdbserver's own stderr output.
      Signed-off-by: NCleber Rosa <crosa@redhat.com>
      71d47611
    • C
      GDB: add implementation of remote protocol · 0c0401b1
      Cleber Rosa 提交于
      GDB talks to targets via a so-called remote protocol. These targets
      can be things like gdbserver, ROM monitors on specific hardware boards,
      or applications that implement the same protocol.
      
      One noteworthy example of application is QEMU, which implements some
      basic GDB Remote commands and also a few extenions of its own.
      
      This initial implementation allows connecting to the remote target,
      sending commands and receive results. The API can certainly grow later
      based on demand.
      
      Changes from v1:
       * Fix a typo in the REMOTE_MAX_PACKET_SIZE comment
      Signed-off-by: NCleber Rosa <crosa@redhat.com>
      0c0401b1