summaryrefslogtreecommitdiffstats
path: root/src/VBox/Devices/PC/ipxe/src/include/ipxe/gdbserial.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/VBox/Devices/PC/ipxe/src/include/ipxe/gdbserial.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/VBox/Devices/PC/ipxe/src/include/ipxe/gdbserial.h b/src/VBox/Devices/PC/ipxe/src/include/ipxe/gdbserial.h
new file mode 100644
index 00000000..e1040c94
--- /dev/null
+++ b/src/VBox/Devices/PC/ipxe/src/include/ipxe/gdbserial.h
@@ -0,0 +1,20 @@
+#ifndef _IPXE_GDBSERIAL_H
+#define _IPXE_GDBSERIAL_H
+
+/** @file
+ *
+ * GDB remote debugging over serial
+ *
+ */
+
+FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
+
+#include <stdint.h>
+
+struct gdb_transport;
+
+extern struct gdb_transport * gdbserial_configure ( unsigned int port,
+ unsigned int baud,
+ uint8_t lcr );
+
+#endif /* _IPXE_GDBSERIAL_H */