source: rtems/c/src/lib/libbsp/i386/ts_386ex/tools/debug_c/serial_gdb.h @ 1d4048b2

4.104.114.84.95
Last change on this file since 1d4048b2 was 1d4048b2, checked in by Joel Sherrill <joel.sherrill@…>, on 08/11/99 at 23:45:57

Patch from Tony R. Ambardar <tonya@…>:

I'm attaching a big patch for the ts_386ex BSP which adds and includes
the following:

1) Conversion to ELF format + minor code cleanups + documentation.

2) An Ada95 binding to FreeBSD sockets, based on Samuel Tardieu's

adasockets-0.1.3 package. This includes some sample applications.

3) Some Ada and C interfaces to add serial-port debugging to

programs. Comes with examples, too; the Ada one shows how
transparent adding the support can be. Note that Rosimildo sent me
the original C code.

The network stuff is not BSP specific, and could be added to your Ada
code collection. The debugging stuff is specific to the i386. Right
now, everything sits in my "tools" directory.

  • Property mode set to 100644
File size: 216 bytes
Line 
1/*  serial_gdb.h
2 *
3 *  Interface to invoke and initialize GDB support.
4 *
5 */
6
7#ifdef __cplusplus
8extern "C" {
9#endif
10
11void init_serial_gdb( void );
12
13#define breakpoint() asm("int $3")
14
15#ifdef __cplusplus
16}
17#endif
18
Note: See TracBrowser for help on using the repository browser.