[GDB] Provide functions to manually enter GDB stub.

This commit is contained in:
Stefan Hajnoczi
2008-06-16 14:42:22 +01:00
committed by Michael Brown
parent 7eb555a8ae
commit e9e1da131a
4 changed files with 79 additions and 32 deletions

View File

@@ -0,0 +1,19 @@
#ifndef _GPXE_GDBSERIAL_H
#define _GPXE_GDBSERIAL_H
/** @file
*
* GDB remote debugging over serial
*
*/
struct gdb_transport;
/**
* Set up the serial transport
*
* @ret transport suitable for starting the GDB stub or NULL on error
*/
struct gdb_transport *gdbserial_configure ( void );
#endif /* _GPXE_GDBSERIAL_H */