You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

gdbserial.h 329B

12345678910111213141516171819
  1. #ifndef _GPXE_GDBSERIAL_H
  2. #define _GPXE_GDBSERIAL_H
  3. /** @file
  4. *
  5. * GDB remote debugging over serial
  6. *
  7. */
  8. struct gdb_transport;
  9. /**
  10. * Set up the serial transport
  11. *
  12. * @ret transport suitable for starting the GDB stub or NULL on error
  13. */
  14. struct gdb_transport *gdbserial_configure ( void );
  15. #endif /* _GPXE_GDBSERIAL_H */