summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/ts_386ex/tools/debug_c/serial_gdb.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2011-03-01 17:40:16 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2011-03-01 17:40:16 +0000
commit8986eb3674f73ce5343160273e23faed563a786e (patch)
tree4daa817c7676074a4025713700435d36b13bb5a6 /c/src/lib/libbsp/i386/ts_386ex/tools/debug_c/serial_gdb.c
parentAdd config.h.in (diff)
downloadrtems-8986eb3674f73ce5343160273e23faed563a786e.tar.bz2
Remove (Abandoned).
Diffstat (limited to 'c/src/lib/libbsp/i386/ts_386ex/tools/debug_c/serial_gdb.c')
-rw-r--r--c/src/lib/libbsp/i386/ts_386ex/tools/debug_c/serial_gdb.c59
1 files changed, 0 insertions, 59 deletions
diff --git a/c/src/lib/libbsp/i386/ts_386ex/tools/debug_c/serial_gdb.c b/c/src/lib/libbsp/i386/ts_386ex/tools/debug_c/serial_gdb.c
deleted file mode 100644
index 395b606660..0000000000
--- a/c/src/lib/libbsp/i386/ts_386ex/tools/debug_c/serial_gdb.c
+++ /dev/null
@@ -1,59 +0,0 @@
-/* serial_gdb
- *
- * Interface to initialize the GDB.
- *
- * COPYRIGHT (c) 1989-1999.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#include <uart.h>
-#include <rtems/bspIo.h>
-
-extern int BSPConsolePort;
-
-void i386_stub_glue_init(int);
-void i386_stub_glue_init_breakin(void);
-void set_debug_traps(void);
-
- /* Init GDB glue */
-
-void init_serial_gdb( void )
-{
- if(BSPConsolePort != BSP_UART_COM2)
- {
- /*
- * If com2 is not used as console use it for
- * debugging
- */
-
- i386_stub_glue_init(BSP_UART_COM2);
- printk( "Remote GDB using COM2...\n" );
-
- }
- else
- {
- /* Otherwise use com1 */
- i386_stub_glue_init(BSP_UART_COM1);
- printk( "Remote GDB using COM1...\n" );
- }
-
- printk( "Remote GDB: setting traps...\n" );
- /* Init GDB stub itself */
- set_debug_traps();
-
- printk( "Remote GDB: waiting for remote connection...\n" );
-
- /*
- * Init GDB break in capability,
- * has to be called after
- * set_debug_traps
- */
- i386_stub_glue_init_breakin();
-
-}