summaryrefslogtreecommitdiffstats
path: root/src/core/gdbudp.c
Commit message (Collapse)AuthorAgeFilesLines
* [nap] Formalise the CPU sleeping APIMichael Brown2008-10-131-1/+1
|
* [GDB] Provide functions to manually enter GDB stub.Stefan Hajnoczi2008-06-301-32/+33
|
* [GDB] UDP clean up and add netdev refcntStefan Hajnoczi2008-06-301-19/+47
|
* [GDB] Remote debugging over UDPStefan Hajnoczi2008-06-301-0/+228
This commit implements GDB over UDP. Using UDP is more complex than serial and has required some restructuring. The GDB stub is now built using one or both of GDBSERIAL and GDBUDP config.h options. To enter the debugger, execute the gPXE shell command: gdbstub <transport> [<options>...] Where <transport> is "serial" or "udp". For "udp", the name of a configured network device is required: gdbstub udp net0 The GDB stub listens on UDP port 43770 by default.